EP Symbolization 重构line-word-index

This commit is contained in:
ninemine
2025-07-05 16:57:59 +08:00
parent 8123ed4b15
commit 522010e7cd
9 changed files with 132 additions and 85 deletions

View File

@@ -118,10 +118,10 @@ namespace Convention.Symbolization.Internal
public static Namespace CreateRootNamespace()
{
return new("global");
return new("global", 0, 0);
}
private Namespace(string symbolName) : base(symbolName) { }
private Namespace(string symbolName, int lineIndex, int wordIndex) : base(symbolName, lineIndex, wordIndex) { }
public override bool Equals(Namespace other)
{