Browse Source

Fixed generic method instantiation and extended last fix to nonvirtual properties too

pull/46/head
Anairkoen Schno 4 years ago
parent
commit
6b82b3fd1f
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      IPA.Loader/Config/Stores/GeneratedStoreImpl.cs

+ 3
- 2
IPA.Loader/Config/Stores/GeneratedStoreImpl.cs View File

@ -1604,9 +1604,10 @@ namespace IPA.Config.Stores
// for now, we assume that its a generated type implementing IGeneratedStore
var IGeneratedStore_Serialize = typeof(IGeneratedStore).GetMethod(nameof(IGeneratedStore.Serialize));
var IGeneratedStoreT_CopyFrom = typeof(IGeneratedStore<>).GetMethod(nameof(IGeneratedStore<object>.CopyFrom));
var IGeneratedStoreT_CopyFrom = typeof(IGeneratedStore<>).GetMethod(nameof(IGeneratedStore<object>.CopyFrom))
.MakeGenericMethod(member.Type);
if (member.IsField)
if (!member.IsVirtual)
{
var noCreate = il.DefineLabel();
var stlocal = GetLocal(member.Type);


Loading…
Cancel
Save