Sha256: 0dcb0ccfca8d1728bdef3bdbe899b9b093adb4f752579cfb3f6b2c88b4398815
Contents?: true
Size: 385 Bytes
Versions: 5
Compression:
Stored size: 385 Bytes
Contents
import ExecutionPathOptions from '../ExecutionPathOptions'; import { ExpressionNode, StatementNode, StatementBase } from './shared/Node'; import { NodeType } from './NodeType'; export default class DoWhileStatement extends StatementBase { type: NodeType.DoWhileStatement; body: StatementNode; test: ExpressionNode; hasEffects(options: ExecutionPathOptions): boolean; }
Version data entries
5 entries across 5 versions & 2 rubygems