UNPKG

calcium-lang

Version:
12 lines (11 loc) 326 B
import { Reference } from "."; import Environment from "../runtime/environment"; import { InternalType } from "../type"; /** * multiple values assignment or unpacking */ export default class Comma { readonly refs: Reference[]; constructor(refs: Reference[]); assign(rhs: InternalType, env: Environment): void; }