mirror of
https://github.com/ZuneDev/MicrosoftIris.git
synced 2026-07-27 13:13:29 -07:00
UIX debugger improvements
This commit is contained in:
@@ -62,14 +62,14 @@ namespace Microsoft.Iris.Markup
|
||||
|
||||
internal ulong[] PersistList => _runtimeList;
|
||||
|
||||
public Vector<Debug.Data.MarkupLineNumberEntry> DumpTable()
|
||||
public Debug.Data.MarkupLineNumberEntry[] DumpTable()
|
||||
{
|
||||
Vector<Debug.Data.MarkupLineNumberEntry> knownLines = new();
|
||||
var knownLines = new Debug.Data.MarkupLineNumberEntry[_runtimeList.Length];
|
||||
|
||||
for (int index = 0; index < _runtimeList.Length; ++index)
|
||||
{
|
||||
var value = _runtimeList[index];
|
||||
knownLines.Add(new(UnpackOffset(value), UnpackLine(value), UnpackColumn(value)));
|
||||
knownLines[index] = new(UnpackOffset(value), UnpackLine(value), UnpackColumn(value));
|
||||
}
|
||||
|
||||
return knownLines;
|
||||
|
||||
Reference in New Issue
Block a user