Search


Search something to see results

NumberToken

Number token

interface NumberToken {
    loc?: Location;
    parent?: any;
    sign?: "-" | "+";
    tokens?: Token[] | null;
    typ: NumberTokenType;
    val: number | FractionToken;
}

Hierarchy (View Summary)

Index

Properties

loc?: Location

location info

parent?: any

parent node

sign?: "-" | "+"
tokens?: Token[] | null

prelude or selector tokens

token type

val: number | FractionToken