@turbowarp/types
    Preparing search index...

    Interface Sequencer

    interface Sequencer {
        activeThread: Thread | null;
        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;
    }
    Index

    Properties

    activeThread: Thread | null
    runtime: Runtime
    timer: Timer

    Methods

    • Parameters

      • thread: Thread
      • branch: number
      • isLoop: boolean

      Returns void