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

Added support for bool in reflected attributes

This commit is contained in:
Brian Fiete 2020-08-23 07:43:16 -07:00
parent e5406250e3
commit 5c2e0d86c0
3 changed files with 14 additions and 6 deletions

View file

@ -46,7 +46,8 @@ namespace System.Reflection
{
case .Int8,
.UInt8,
.Char8:
.Char8,
.Boolean:
let attrData = Decode!<int8>(data);
args[argIdx] = scope:AttrBlock box attrData;
case .Int16,