change file to execution stop point

This commit is contained in:
Matt Parker
2025-08-27 19:16:06 +10:00
parent 38fdadb235
commit b5d80204e9
7 changed files with 38 additions and 22 deletions

View File

@@ -10,10 +10,11 @@ public class SharpIdeFile : ISharpIdeNode, IChildSharpIdeNode
public required string Name { get; set; }
[SetsRequiredMembers]
internal SharpIdeFile(string fullPath, string name, IExpandableSharpIdeNode parent)
internal SharpIdeFile(string fullPath, string name, IExpandableSharpIdeNode parent, HashSet<SharpIdeFile> allFiles)
{
Path = fullPath;
Name = name;
Parent = parent;
allFiles.Add(this);
}
}