Sha256: b7a47e930708f22dbefbe4b40f113d0196106e736c2867a3bf753f9b4db7750a
Contents?: true
Size: 646 Bytes
Versions: 5
Compression:
Stored size: 646 Bytes
Contents
import { ObjectPath } from '../values'; import ExecutionPathOptions from '../ExecutionPathOptions'; import { NodeType } from './NodeType'; import { ExpressionNode, NodeBase } from './shared/Node'; export default class UnaryExpression extends NodeBase { type: NodeType.UnaryExpression; operator: '-' | '+' | '!' | '~' | 'typeof' | 'void' | 'delete'; prefix: boolean; argument: ExpressionNode; value: any; bindNode(): void; getValue(): any; hasEffects(options: ExecutionPathOptions): boolean; hasEffectsWhenAccessedAtPath(path: ObjectPath, _options: ExecutionPathOptions): boolean; initialiseNode(): void; }
Version data entries
5 entries across 5 versions & 2 rubygems