enums/TokenType.ps1

enum TokenType {
    Unknown
    CStyleBlockComment
    CStyleLineComment
    PSBlockComment
    PSLineComment
    ScopeStart
    ScopeEnd
    Newline
    SemiColon
    Directive
    Whitespace
    Identifier
    Mnemonic
    Label
    AnonymousLabel
    AnonymousReference
    Hash
    LAngle
    RAngle
    LParen
    RParen
    LBracket
    RBracket
    LCurly
    RCurly
    Plus
    Minus
    Divide
    Asterisk
    Modulo
    Equals
    NumericLiteral
    PSVariable
    Comma
    Member
    DotDot
    Pipe
    ColonColon
    StringLiteral
    StringExpandable
    PSFunctionParameter
    PSKeyword
    PSClassMethod
    Dot
    QuestionMark
    TernaryColon
    NullCoalesce
    NullConditionalProperty
    NullConditionalIndex
    EOF
    Error
    IncludeDirective
    AtSymbol
}