Wang Language - v0.21.5
    Preparing search index...

    Interface ExecutionState

    interface ExecutionState {
        callStack: CallFrame[];
        currentNode?: any;
        error?: any;
        pauseRequested?: boolean;
        result?: any;
        type: "error" | "running" | "paused" | "completed";
    }
    Index

    Properties

    callStack: CallFrame[]
    currentNode?: any
    error?: any
    pauseRequested?: boolean
    result?: any
    type: "error" | "running" | "paused" | "completed"