UNPKG

expression-language.js

Version:

An engine for javascript that can compile and evaluate expressions written in typescript

11 lines 381 B
import { Expr } from "../node"; import Position from "../../position"; import { Runtime } from "../../runtime"; declare class CallExpression extends Expr { private readonly callee; private readonly args; constructor(callee: Expr, args: Expr[], position: Position); evaluate(runtime: Runtime): any; } export default CallExpression; //# sourceMappingURL=call.d.ts.map