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