-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add a DiagnosticManager * fix merge issue * Fix failing tests * Handle enum mismatch for diagnostic severity --------- Co-authored-by: Christian Holbrook <[email protected]>
- Loading branch information
1 parent
faeacd3
commit b5944cb
Showing
4 changed files
with
62 additions
and
92 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
import type { BSDebugDiagnostic } from 'roku-debug'; | ||
import * as vscode from 'vscode'; | ||
|
||
export class DiagnosticManager { | ||
|
||
private collection = vscode.languages.createDiagnosticCollection('BrightScript'); | ||
|
||
public clear() { | ||
this.collection.clear(); | ||
} | ||
|
||
public async addDiagnosticForError(path: string, diagnostics: BSDebugDiagnostic[]) { | ||
let documentUri: vscode.Uri; | ||
let uri = vscode.Uri.file(path); | ||
let doc = await vscode.workspace.openTextDocument(uri); | ||
if (doc !== undefined) { | ||
documentUri = doc.uri; | ||
} | ||
|
||
if (documentUri !== undefined) { | ||
let result: vscode.Diagnostic[] = []; | ||
for (const diagnostic of diagnostics) { | ||
|
||
result.push({ | ||
code: diagnostic.code, | ||
message: diagnostic.message, | ||
source: diagnostic.source, | ||
//the DiagnosticSeverity.Error from vscode-languageserver-types starts at 1, but vscode.DiagnosticSeverity.Error starts at 0. So subtract 1 to make them compatible | ||
severity: diagnostic.severity - 1, | ||
tags: diagnostic.tags, | ||
range: new vscode.Range( | ||
new vscode.Position(diagnostic.range.start.line, diagnostic.range.start.character), | ||
new vscode.Position(diagnostic.range.end.line, diagnostic.range.end.character) | ||
) | ||
}); | ||
} | ||
this.collection.set(documentUri, result); | ||
} | ||
} | ||
|
||
|
||
} |