Sha256: 58009d8dbcd1481aa283e61c7edfc4eb612f627cf2b52d6900751430f1c4d9da
Contents?: true
Size: 734 Bytes
Versions: 5
Compression:
Stored size: 734 Bytes
Contents
import { ObjectPath } from '../values'; import Scope from '../scopes/Scope'; import ExecutionPathOptions from '../ExecutionPathOptions'; import { PatternNode } from './shared/Pattern'; import { ExpressionEntity } from './shared/Expression'; import { NodeBase } from './shared/Node'; import { NodeType } from './NodeType'; export default class ArrayPattern extends NodeBase implements PatternNode { type: NodeType.ArrayPattern; elements: (PatternNode | null)[]; reassignPath(path: ObjectPath, options: ExecutionPathOptions): void; hasEffectsWhenAssignedAtPath(path: ObjectPath, options: ExecutionPathOptions): boolean; initialiseAndDeclare(parentScope: Scope, kind: string, _init: ExpressionEntity | null): void; }
Version data entries
5 entries across 5 versions & 2 rubygems