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