mirror of
https://github.com/ZuneDev/ZuneUIXTools.git
synced 2026-07-27 13:11:59 -07:00
Fix export tables and remove static Load method
This commit is contained in:
@@ -38,12 +38,15 @@ public class Disassembler
|
||||
yield return new ExportDirective(labelPrefix, markupTypeSchema.ListenerCount, baseName);
|
||||
|
||||
var propOffset = markupTypeSchema.InitializePropertiesOffset;
|
||||
if (propOffset != uint.MaxValue)
|
||||
InsertLabel(propOffset, ExportDirective.GetInitializePropertiesLabel(labelPrefix));
|
||||
|
||||
var loclOffset = markupTypeSchema.InitializeLocalsInputOffset;
|
||||
if (loclOffset != uint.MaxValue)
|
||||
InsertLabel(loclOffset, ExportDirective.GetInitializeLocalsInputLabel(labelPrefix));
|
||||
|
||||
var contOffset = markupTypeSchema.InitializeContentOffset;
|
||||
if (contOffset != uint.MaxValue)
|
||||
InsertLabel(contOffset, ExportDirective.GetInitializeContentLabel(labelPrefix));
|
||||
|
||||
if (markupTypeSchema.InitialEvaluateOffsets != null)
|
||||
|
||||
Reference in New Issue
Block a user