IntLiteral
export interface IntLiteral {
isEqual(other: Token): boolean
kind: "int"
site: Site
toString(preserveWhitespace?: boolean): string
value: bigint
}
Instantiate a IntLiteral
token with makeIntLiteral.
Properties
isEqual
isEqual(other: Token): boolean
kind
kind: "int"
site
site: Site
toString
toString(preserveWhitespace?: boolean): string
value
value: bigint