File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change 1
1
/**
2
2
* @name Failed extractor invocations
3
3
* @description Gives the command line of compilations for which extraction did not run to completion.
4
- * @kind table
4
+ * @kind diagnostic
5
5
* @id cpp/diagnostics/failed-extractor-invocations
6
6
*/
7
7
8
8
import cpp
9
9
10
- class AnonymousCompilation extends Compilation {
11
- override string toString ( ) { result = "<compilation>" }
12
- }
13
-
14
10
string describe ( Compilation c ) {
15
11
if c .getArgument ( 1 ) = "--mimic"
16
12
then result = "compiler invocation " + concat ( int i | i > 1 | c .getArgument ( i ) , " " order by i )
@@ -19,4 +15,4 @@ string describe(Compilation c) {
19
15
20
16
from Compilation c
21
17
where not c .normalTermination ( )
22
- select c , "Extraction aborted for " + describe ( c )
18
+ select "Extraction aborted for " + describe ( c )
You can’t perform that action at this time.
0 commit comments