Sha256: a17330c72d303d1ae6053a222bd46ff02234a441438ee4f7a4b478694848063e
Contents?: true
Size: 924 Bytes
Versions: 5
Compression:
Stored size: 924 Bytes
Contents
import VariableDeclaration from './VariableDeclaration'; import Scope from '../scopes/Scope'; import ExecutionPathOptions from '../ExecutionPathOptions'; import { PatternNode } from './shared/Pattern'; import { NodeType } from './NodeType'; import { ExpressionNode, Node, StatementBase, StatementNode } from './shared/Node'; import MagicString from 'magic-string'; import { RenderOptions } from '../../utils/renderHelpers'; export declare function isForInStatement(node: Node): node is ForInStatement; export default class ForInStatement extends StatementBase { type: NodeType.ForInStatement; left: VariableDeclaration | PatternNode; right: ExpressionNode; body: StatementNode; hasEffects(options: ExecutionPathOptions): boolean; initialiseChildren(): void; includeInBundle(): boolean; initialiseScope(parentScope: Scope): void; render(code: MagicString, options: RenderOptions): void; }
Version data entries
5 entries across 5 versions & 2 rubygems