1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 11:38:21 +02:00

Merge remote-tracking branch 'origin/master'

This commit is contained in:
Brian Fiete 2022-03-31 06:58:07 -07:00
commit 0d7a7e98e4

View file

@ -189,7 +189,7 @@ namespace System.Reflection
.Double: .Double:
let attrData = AttributeInfo.Decode!<int64>(mData); let attrData = AttributeInfo.Decode!<int64>(mData);
args[argIdx] = Variant.Create(attrData); args[argIdx] = Variant.Create(attrData);
case (TypeCode)typeof(TypeCode).MaxValue + 8: //BfConstType_TypeOf case (TypeCode)typeof(TypeCode).MaxValue + 9: //BfConstType_TypeOf
let argTypeId = AttributeInfo.Decode!<int32>(mData); let argTypeId = AttributeInfo.Decode!<int32>(mData);
args[argIdx] = Variant.Create(Type.[Friend]GetType((.)argTypeId)); args[argIdx] = Variant.Create(Type.[Friend]GetType((.)argTypeId));
case (TypeCode)255: case (TypeCode)255:
@ -463,7 +463,7 @@ namespace System.Reflection
.Double: .Double:
let attrData = AttributeInfo.Decode!<int64>(mData); let attrData = AttributeInfo.Decode!<int64>(mData);
args[argIdx] = scope:: box attrData; args[argIdx] = scope:: box attrData;
case (TypeCode)typeof(TypeCode).MaxValue + 8: //BfConstType_TypeOf case (TypeCode)typeof(TypeCode).MaxValue + 9: //BfConstType_TypeOf
let argTypeId = AttributeInfo.Decode!<int32>(mData); let argTypeId = AttributeInfo.Decode!<int32>(mData);
args[argIdx] = Type.[Friend]GetType((.)argTypeId); args[argIdx] = Type.[Friend]GetType((.)argTypeId);
case (TypeCode)255: case (TypeCode)255: