Contains all information populated and present during parsing and normalization of the R AST.

interface NormalizerData {
    currentLexeme: undefined | string;
    currentRange: undefined | SourceRange;
    [key: string]: unknown;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: unknown

Hierarchy-Diagram

UML class diagram of NormalizerData

Properties

currentLexeme: undefined | string

The currently active lexeme during parsing, i.e., the full lexeme of the current element.

currentRange: undefined | SourceRange

The currently active source range during parsing, i.e., the full range of the current element.