@eagleoutice/flowr - v2.15.8
    Preparing search index...

    How many nodes an AST holds and how much of its source is taken up by the comments attached to them.

    interface AstCommentCounts {
        commentChars: number;
        commentCharsNoWhitespace: number;
        nodes: number;
        nodesNoComments: number;
    }
    Index
    commentChars: number

    Characters taken up by the attached comments.

    commentCharsNoWhitespace: number

    commentChars without any whitespace.

    nodes: number

    All normalized nodes.

    nodesNoComments: number

    The nodes without an attached comment.