| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -1,16 +1,12 @@ | |||
| 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) | ||
| Back | FazBrowse Home | New Git URL |
0 commit comments