mirror of
https://github.com/DanielnetoDotCom/YouPHPTube
synced 2025-10-05 10:49:36 +02:00
19 lines
335 B
TypeScript
19 lines
335 B
TypeScript
import { TempNode } from '../core/TempNode';
|
|
import { Node } from '../core/Node';
|
|
|
|
export class OperatorNode extends TempNode {
|
|
|
|
constructor( a: Node, b: Node, op: string );
|
|
|
|
a: Node;
|
|
b: Node;
|
|
op: string;
|
|
|
|
copy( source: OperatorNode ): this;
|
|
|
|
static ADD: string;
|
|
static SUB: string;
|
|
static MUL: string;
|
|
static DIV: string;
|
|
|
|
}
|