interface Sequencer {
    activeThread: null | Thread;
    runtime: Runtime;
    timer: Timer;
    retireThread(thread: Thread): void;
    stepThread(thread: Thread): void;
    stepThreads(): void;
    stepToBranch(thread: Thread, branch: number, isLoop: boolean): void;
    stepToProcedure(thread: Thread, procedureCode: string): void;
}

Properties

activeThread: null | Thread
runtime: Runtime
timer: Timer

Methods