@eagleoutice/flowr - v2.10.3
    Preparing search index...
    interface TestLabel {
        capabilities: ReadonlySet<SupportedFlowrCapabilityId>;
        context: Set<
            | "slice"
            | "search"
            | "dataflow"
            | "call-graph"
            | "linter"
            | "parse"
            | "other"
            | "resolve"
            | "query"
            | "output"
            | "controlflow"
            | "desugar-shell"
            | "desugar-tree-sitter"
            | "absint",
        >;
        id: string;
        name: string;
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown

    Hierarchy-Diagram

    UML class diagram of TestLabel
    Index

    Properties

    capabilities: ReadonlySet<SupportedFlowrCapabilityId>

    even if ids appear multiple times, we only want to count each one once

    context: Set<
        | "slice"
        | "search"
        | "dataflow"
        | "call-graph"
        | "linter"
        | "parse"
        | "other"
        | "resolve"
        | "query"
        | "output"
        | "controlflow"
        | "desugar-shell"
        | "desugar-tree-sitter"
        | "absint",
    >

    this is automatically set (hihi) by functions like assertAst to correctly derive what part of capability we check

    id: string
    name: string