Sha256: acba67a4a6425a6fde6546e9d81a23ce37603a58816c1e4075adf4f452106c2b

Contents?: true

Size: 575 Bytes

Versions: 5

Compression:

Stored size: 575 Bytes

Contents

import { ExpressionNode, NodeBase } from './shared/Node';
import Scope from '../scopes/Scope';
import ExecutionPathOptions from '../ExecutionPathOptions';
import { PatternNode } from './shared/Pattern';
import { NodeType } from './NodeType';
import { ObjectPath } from '../values';
export default class VariableDeclarator extends NodeBase {
    type: NodeType.VariableDeclarator;
    id: PatternNode;
    init: ExpressionNode | null;
    reassignPath(path: ObjectPath, options: ExecutionPathOptions): void;
    initialiseDeclarator(parentScope: Scope, kind: string): void;
}

Version data entries

5 entries across 5 versions & 2 rubygems

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