UNPKG

calcium-lang

Version:
13 lines (12 loc) 258 B
import Command from "./command"; import Environment from "../runtime/environment"; /** * Python's `pass` statement */ export default class Pass implements Command { /** * do nothing * @param env */ execute(env: Environment): void; }