aqua/language-server/language-server-npm/aqua-lsp-api.d.ts
InversionSpaces 1e636cc076
feat(lsp-api): Add infoType (#915)
Add infoType
2023-09-28 13:00:53 +03:00

47 lines
880 B
TypeScript

export interface TokenLocation {
name: string,
startLine: number,
startCol: number,
endLine: number,
endCol: number
}
export interface TokenLink {
current: TokenLocation,
definition: TokenLocation
}
export interface TokenImport {
current: TokenLocation,
path: string
}
export interface ErrorInfo {
infoType: "error",
start: number,
end: number,
message: string,
location: string | null
}
export interface WarningInfo {
infoType: "warning",
start: number,
end: number,
message: string,
location: string | null
}
export interface CompilationResult {
errors: ErrorInfo[],
warnings: WarningInfo[],
locations: TokenLink[],
importLocations: TokenImport[]
}
export class Compiler {
compile(path: string, imports: string[]): Promise<CompilationResult>;
}
export var AquaLSP: Compiler;