Comment
export interface Comment {
isEqual(other: Token): boolean
kind: "comment"
site: Site
toString(preserveWhitespace?: boolean): string
value: string
}
Instantiate a Comment
token with makeComment.
Properties
isEqual
isEqual(other: Token): boolean
kind
kind: "comment"
site
site: Site
toString
toString(preserveWhitespace?: boolean): string
value
value: string