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