Member Junction
    Preparing search index...

    Result of walking the AST to annotate MJ placeholder positions

    interface MJASTWalkResult {
        annotations: MJASTAnnotation[];
        byClause: Map<SQLClauseContext, MJASTAnnotation[]>;
        byPlaceholder: Map<string, MJASTAnnotation>;
        compositionRefs: MJASTAnnotation[];
        templateExprs: MJASTAnnotation[];
    }
    Index

    Properties

    annotations: MJASTAnnotation[]

    All annotations found, in walk order

    Annotations grouped by SQL clause context

    byPlaceholder: Map<string, MJASTAnnotation>

    Annotations indexed by placeholder string for quick lookup

    compositionRefs: MJASTAnnotation[]

    Annotations for composition refs only

    templateExprs: MJASTAnnotation[]

    Annotations for template expressions only