File tree Expand file tree Collapse file tree
test/library-tests/diagnostics Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ /**
2+ * @name Successfully extracted files
3+ * @description A list of all files in the source code directory that were extracted
4+ * without encountering an extraction error in the file.
5+ * @kind diagnostic
6+ * @id cs/diagnostics/successfully-extracted-files
7+ */
8+
9+ import csharp
10+ import semmle.code.csharp.commons.Diagnostics
11+
12+ from File file
13+ where file .fromSource ( ) and not exists ( ExtractorError e | e .getLocation ( ) .getFile ( ) = file )
14+ select file , ""
Original file line number Diff line number Diff line change 1+ public class A
2+ {
3+ public void M ( ) { }
4+ }
Original file line number Diff line number Diff line change 1+ | A.cs:0:0:0:0 | A.cs | |
Original file line number Diff line number Diff line change 1+ Diagnostics/DiagnosticNoExtractionErrors.ql
You can’t perform that action at this time.
0 commit comments