Site
export interface Site {
column: number
description: undefined | string
end: undefined | Pos
file: string
line: number
toString(): string
withDescription(description: string): Site
}
Source map site containing all necessary information to link a symbol in the output generated by the compiler process back to the original piece of source code.
Properties
column
column: number
description
description: undefined | string
end
end: undefined | Pos
Optional range end of the Site
file
file: string
line
line: number
toString
toString(): string
withDescription
withDescription(description: string): Site
Creates a copy of the Site containing the given description