IntLiteral
export interface IntLiteral {
isEqual(other: Token): boolean
kind: "int"
site: Site
toString(preserveWhitespace: boolean): string
value: bigint
}
Properties
isEqual
intLiteral.isEqual satisfies (other: Token) => boolean
kind
intLiteral.kind satisfies "int"
site
intLiteral.site satisfies Site
toString
intLiteral.toString satisfies (preserveWhitespace: boolean) => string
value
intLiteral.value satisfies bigint