Member Junction
    Preparing search index...

    Result of the full MJ SQL parsing pipeline

    interface MJParseResult {
        hasCompositionRefs: boolean;
        hasConditionalBlocks: boolean;
        hasLoopBlocks: boolean;
        hasMJExtensions: boolean;
        hasTemplateExpressions: boolean;
        tokens: MJToken[];
    }
    Index

    Properties

    hasCompositionRefs: boolean

    Whether the SQL contains composition references

    hasConditionalBlocks: boolean

    Whether the SQL contains conditional blocks

    hasLoopBlocks: boolean

    Whether the SQL contains loop blocks

    hasMJExtensions: boolean

    Whether the SQL contains any MJ extensions

    hasTemplateExpressions: boolean

    Whether the SQL contains Nunjucks template expressions

    tokens: MJToken[]

    All MJ tokens found in the SQL, in source order