data-cap
    Preparing search index...

    Interface ParseResult

    Everything statically extracted from one source file's AST, before any cross-file linking.

    interface ParseResult {
        createDataCalls: readonly RawCreateDataCall[];
        documentDataCalls: readonly RawDocumentDataCall[];
        file: string;
        imports: readonly ImportBinding[];
        localConsts: ReadonlyMap<string, Expression>;
        warnings: readonly ParseWarning[];
    }
    Index
    createDataCalls: readonly RawCreateDataCall[]

    Every buildData(...)/createData(...) call found in this file.

    documentDataCalls: readonly RawDocumentDataCall[]

    Every documentData(...) call found in this file.

    file: string

    Absolute path of the parsed file.

    imports: readonly ImportBinding[]

    Every top-level import binding found in this file.

    localConsts: ReadonlyMap<string, Expression>

    Top-level const X = <expr> bindings, keyed by name -- for resolving an identifier-kind SchemaRef within the same file.

    warnings: readonly ParseWarning[]

    Extraction problems encountered while parsing this file -- never thrown, always collected.