Ruby: Sync identical files.

This commit is contained in:
Geoffrey White
2024-10-03 14:16:12 +01:00
parent 2e772a80c4
commit 4c7ec59306

View File

@@ -48,7 +48,8 @@ class Diagnostic extends @diagnostic {
string toString() { result = this.getMessage() }
}
/** A diagnostic relating to a particular error in extracting a file. */
class ExtractionError extends Diagnostic {
ExtractionError() { this.getTag() = "parse_error" }
}
/** A diagnostic that is error severity. */
class ExtractionError extends Diagnostic, @diagnostic_error { }
/** A diagnostic that is warning severity. */
class ExtractionWarning extends Diagnostic, @diagnostic_warning { }