Polyglot SQL API Documentation - v0.2.0
    Preparing search index...

    Interface TokenInfo

    A single token from the SQL token stream.

    interface TokenInfo {
        comments: string[];
        span: SpanInfo;
        text: string;
        tokenType: string;
        trailingComments: string[];
    }
    Index

    Properties

    comments: string[]
    span: SpanInfo
    text: string
    tokenType: string
    trailingComments: string[]