We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent faeff39 commit e6f3512Copy full SHA for e6f3512
cpp/ql/src/Telemetry/Diagnostics.qll
@@ -27,15 +27,3 @@ class CannotOpenFile extends CompilerError {
27
result = this.getMessage().regexpCapture("cannot open source file '([^']+)'", 1)
28
}
29
30
-
31
-/**
32
- * An undefined identifier error.
33
- * Currently unused.
34
- */
35
-class UndefinedIdentifier extends CompilerError {
36
- UndefinedIdentifier() { this.hasTag("undefined_identifier") }
37
38
- string getIdentifier() {
39
- result = this.getMessage().regexpCapture("identifier '([^']+)' is undefined", 1)
40
- }
41
-}
0 commit comments