BoolLiteral
export interface BoolLiteral {
isEqual(other: Token): boolean
kind: "bool"
site: Site
toString(preserveWhitespace: boolean): string
value: boolean
}
Properties
isEqual
boolLiteral.isEqual satisfies (other: Token) => boolean
kind
boolLiteral.kind satisfies "bool"
site
boolLiteral.site satisfies Site
toString
boolLiteral.toString satisfies (preserveWhitespace: boolean) => string
value
boolLiteral.value satisfies boolean