Coda by Ian Macalinao
    Preparing search index...

    Interface InstructionLinkNode<TProgram>

    A reference to an instruction defined elsewhere — possibly in a different program.

    interface InstructionLinkNode<
        TProgram extends
            ProgramLinkNode
            | undefined = ProgramLinkNode | undefined,
    > {
        kind: "instructionLinkNode";
        name: CamelCaseString;
        program?: TProgram;
    }

    Type Parameters

    Index
    kind: "instructionLinkNode"

    The name of the referenced instruction.

    program?: TProgram

    The program the referenced instruction belongs to. When omitted, the surrounding program is assumed.