mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
8 lines
295 B
Plaintext
8 lines
295 B
Plaintext
import csharp
|
|
import semmle.code.csharp.commons.Diagnostics
|
|
|
|
from ExtractorError error
|
|
where not exists(CompilerError ce | ce.getLocation().getFile() = error.getLocation().getFile())
|
|
select error,
|
|
"Unexpected " + error.getOrigin() + " error: " + error.getText() + "\n" + error.getStackTrace()
|