CondNode.d.ts 577 B

1234567891011121314151617181920212223242526
  1. import { TempNode } from '../core/TempNode';
  2. import { NodeBuilder } from '../core/NodeBuilder';
  3. import { Node } from '../core/Node';
  4. export class CondNode extends TempNode {
  5. constructor( a: Node, b: Node, op: string, ifNode: Node, elseNode: Node );
  6. a: Node;
  7. b: Node;
  8. op: string;
  9. ifNode: Node;
  10. elseNode: Node;
  11. nodeType: string;
  12. getCondType( builder: NodeBuilder ): string;
  13. copy( source: CondNode ): this;
  14. static EQUAL: string;
  15. static NOT_EQUAL: string;
  16. static GREATER: string;
  17. static GREATER_EQUAL: string;
  18. static LESS: string;
  19. static LESS_EQUAL: string;
  20. }