We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Folder
Compilation
1 parent cac7262 commit 9bd1ebcCopy full SHA for 9bd1ebc
1 file changed
csharp/extractor/Semmle.Extraction.CSharp/Entities/Compilations/Compilation.cs
@@ -35,6 +35,10 @@ public override void Populate(TextWriter trapFile)
35
trapFile.compilations(this, FileUtils.ConvertToUnix(cwd));
36
trapFile.compilation_assembly(this, assembly);
37
38
+ // Ensure that a `Folder` entity exists
39
+ var path = Context.ExtractionContext.PathTransformer.Transform(cwd);
40
+ Folder.Create(Context, path);
41
+
42
// Arguments
43
var expandedIndex = 0;
44
for (var i = 0; i < args.Length; i++)
0 commit comments