UNPKG

calcium-lang

Version:
11 lines (10 loc) 280 B
import Command from "./command"; import Environment from "../runtime/environment"; /** * represent a comment line */ export default class Comment implements Command { readonly text: string | null; constructor(text: string | null); execute(env: Environment): void; }