Sha256: 09e5b4432bc0a6707800d1a4cac75d3375e9be9c757222fad47c028ecda2a280
Contents?: true
Size: 367 Bytes
Versions: 5
Compression:
Stored size: 367 Bytes
Contents
import ExecutionPathOptions from '../ExecutionPathOptions'; import { NodeType } from './NodeType'; import { ExpressionNode, NodeBase } from './shared/Node'; export default class YieldExpression extends NodeBase { type: NodeType.YieldExpression; argument: ExpressionNode | null; delegate: boolean; hasEffects(options: ExecutionPathOptions): boolean; }
Version data entries
5 entries across 5 versions & 2 rubygems