UNPKG

calcium-lang

Version:
10 lines (9 loc) 242 B
import Command from "./command"; import Environment from "../runtime/environment"; /** * the parent block of `If`, `Elif` and `Else` */ export default class Ifs implements Command { constructor(); execute(env: Environment): void; }