Rename AppModel.ILModel to AppModel.TypeModel

This commit is contained in:
Katy Coe
2020-08-14 02:18:53 +02:00
parent 0f3b31749b
commit ca55125858
5 changed files with 21 additions and 21 deletions

View File

@@ -72,11 +72,11 @@ namespace Il2CppInspector.Model
// Add all custom attributes generators
// The compiler might perform ICF which will cause duplicates with the above
foreach (var cag in Model.ILModel.CustomAttributeGeneratorsByAddress)
foreach (var cag in Model.TypeModel.CustomAttributeGeneratorsByAddress)
TryAdd(cag.Key, cag.Value);
// Add all method invokers. Multiple invoker indices may reference the same function address
foreach (var mi in Model.ILModel.MethodInvokers.Where(m => m != null))
foreach (var mi in Model.TypeModel.MethodInvokers.Where(m => m != null))
TryAdd(mi.VirtualAddress.Start, mi);
// String literals (metadata >= 19)