wesl
    Preparing search index...

    Interface TextElem

    a raw bit of text in WESL source that's typically copied to the linked WGSL. e.g. a keyword like 'var' or a phrase we needn't analyze further like '@diagnostic(off,derivative_uniformity)'

    interface TextElem {
        end: number;
        kind: "text";
        srcModule: SrcModule;
        start: number;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    end: number
    kind: "text"
    srcModule: SrcModule
    start: number