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