UNPKG

calcium-lang

Version:
13 lines (12 loc) 372 B
import Command from "./command"; import Environment from "../runtime/environment"; import { Expression, Reference } from "../expression"; /** * for loop */ export default class For implements Command { readonly variable: Reference; readonly iterable: Expression; constructor(variable: Reference, iterable: Expression); execute(env: Environment): void; }