OperatorNode.d.ts 335 B

12345678910111213141516171819
  1. import { TempNode } from '../core/TempNode';
  2. import { Node } from '../core/Node';
  3. export class OperatorNode extends TempNode {
  4. constructor( a: Node, b: Node, op: string );
  5. a: Node;
  6. b: Node;
  7. op: string;
  8. copy( source: OperatorNode ): this;
  9. static ADD: string;
  10. static SUB: string;
  11. static MUL: string;
  12. static DIV: string;
  13. }