From 97221d541a2387fecf75f98aeaf5fdfe55c96aff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20L=C3=BCbe=C3=9F?= Date: Thu, 24 Aug 2023 13:07:06 +0200 Subject: [PATCH] Added "In" to RefKind --- BeefLibs/corlib/src/Type.bf | 2 ++ 1 file changed, 2 insertions(+) diff --git a/BeefLibs/corlib/src/Type.bf b/BeefLibs/corlib/src/Type.bf index 824558f0..2abc8929 100644 --- a/BeefLibs/corlib/src/Type.bf +++ b/BeefLibs/corlib/src/Type.bf @@ -1187,6 +1187,7 @@ namespace System.Reflection public enum RefKind { Ref, + In, Out, Mut } @@ -1209,6 +1210,7 @@ namespace System.Reflection switch (mRefKind) { case .Ref: strBuffer.Append("ref "); + case .In: strBuffer.Append("in "); case .Out: strBuffer.Append("out "); case .Mut: strBuffer.Append("mut "); }