Sha256: 4d3e6781d7c93cbc3b4f2eb30a1ac666d77be9949c98bdda5aa6d24f313b4c60

Contents?: true

Size: 1.38 KB

Versions: 5

Compression:

Stored size: 1.38 KB

Contents

import FunctionScope from '../../scopes/FunctionScope';
import BlockScope from '../../scopes/FunctionScope';
import BlockStatement from '../BlockStatement';
import Identifier from '../Identifier';
import CallOptions from '../../CallOptions';
import ExecutionPathOptions from '../../ExecutionPathOptions';
import { PatternNode } from './Pattern';
import { ForEachReturnExpressionCallback, SomeReturnExpressionCallback } from './Expression';
import { NodeBase } from './Node';
import { ObjectPath } from '../../values';
export default class FunctionNode extends NodeBase {
    id: Identifier;
    body: BlockStatement;
    scope: BlockScope;
    params: PatternNode[];
    bindNode(): void;
    forEachReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, callback: ForEachReturnExpressionCallback, options: ExecutionPathOptions): void;
    hasEffects(options: ExecutionPathOptions): boolean;
    hasEffectsWhenAccessedAtPath(path: ObjectPath): boolean;
    hasEffectsWhenAssignedAtPath(path: ObjectPath): boolean;
    hasEffectsWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, options: ExecutionPathOptions): boolean;
    includeInBundle(): boolean;
    initialiseScope(parentScope: FunctionScope): void;
    someReturnExpressionWhenCalledAtPath(path: ObjectPath, callOptions: CallOptions, predicateFunction: SomeReturnExpressionCallback, options: ExecutionPathOptions): boolean;
}

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
jass-0.9.5 vendor/node_modules/rollup/dist/typings/ast/nodes/shared/FunctionNode.d.ts
jass-0.9.4 vendor/node_modules/rollup/dist/typings/ast/nodes/shared/FunctionNode.d.ts
jass-0.9.3 vendor/node_modules/rollup/dist/typings/ast/nodes/shared/FunctionNode.d.ts
condenser-0.0.4 lib/condenser/processors/node_modules/rollup/dist/typings/ast/nodes/shared/FunctionNode.d.ts
jass-0.9.1 vendor/node_modules/rollup/dist/typings/ast/nodes/shared/FunctionNode.d.ts