calcium-lang
Version:
Calcium language interpreter
12 lines (11 loc) • 326 B
TypeScript
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;
}