C++: Remove unused class UndefinedIdentifier

This commit is contained in:
Calum Grant
2024-11-08 16:12:43 +00:00
parent faeff396eb
commit e6f3512056

View File

@@ -27,15 +27,3 @@ class CannotOpenFile extends CompilerError {
result = this.getMessage().regexpCapture("cannot open source file '([^']+)'", 1)
}
}
/**
* An undefined identifier error.
* Currently unused.
*/
class UndefinedIdentifier extends CompilerError {
UndefinedIdentifier() { this.hasTag("undefined_identifier") }
string getIdentifier() {
result = this.getMessage().regexpCapture("identifier '([^']+)' is undefined", 1)
}
}