Skip to content

Commit

Permalink
Add JumpTables collection to oracular data (#213)
Browse files Browse the repository at this point in the history
  • Loading branch information
uxmal committed May 30, 2016
1 parent 929a321 commit 40dc6d1
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/Core/UserData.cs
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public UserData()
this.Calls = new SortedList<Address, UserCallData>();
this.Globals = new SortedList<Address, Serialization.GlobalDataItem_v2>();
this.Heuristics = new SortedSet<string>();
this.JumpTables = new SortedList<Address, Address[]>();
this.Annotations = new List<Annotation>();
this.TextEncoding = Encoding.ASCII;
}
Expand All @@ -48,6 +49,7 @@ public UserData()
public SortedList<Address, Serialization.Procedure_v1> Procedures { get; set; }
public SortedList<Address, UserCallData> Calls { get; set; }
public SortedList<Address, Serialization.GlobalDataItem_v2> Globals { get; set; }
public SortedList<Address, Address[]> JumpTables { get; set; }
public List<Annotation> Annotations { get; set; }

/// <summary>
Expand Down

0 comments on commit 40dc6d1

Please sign in to comment.