/src/script/label.ts
/* A label is not an instruction. It is a marker which the script engine
scans for, removes, and stores in a jump table for future goto instructions. */
export class Label {
name: string
constructor(name: string) {
this.name = name;
}
}