UNPKG

calcium-lang

Version:
17 lines 337 B
import evaluate from "../util/evaluate"; /** * the command of an expression statement */ export default class ExprStmt { /** * * @param value an expression */ constructor(value) { this.value = value; } execute(env) { evaluate(this.value, env); } } //# sourceMappingURL=exprStmt.js.map