expression-language.js
Version:
An engine for javascript that can compile and evaluate expressions written in typescript
12 lines • 432 B
TypeScript
import { Expr } from "../node";
import Position from "../../position";
import { Runtime } from "../../runtime";
declare class BinaryExpression extends Expr {
private readonly left;
private readonly operator;
private readonly right;
constructor(left: Expr, operator: string, right: Expr, position: Position);
evaluate(runtime: Runtime): any;
}
export default BinaryExpression;
//# sourceMappingURL=binary.d.ts.map