UNPKG

expression-language.js

Version:

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

10 lines 341 B
import { Stmt } from "../node"; import Position from "../../position"; import { Runtime } from "../../runtime"; declare class BlockStatement extends Stmt { private readonly stmts; constructor(stmts: Stmt[], position: Position); evaluate(runtime: Runtime): any; } export default BlockStatement; //# sourceMappingURL=block.d.ts.map