1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-10 20:42:21 +02:00

Merge pull request #1887 from aharabada/master

Added "In" to RefKind
This commit is contained in:
Brian Fiete 2023-09-05 07:13:26 -07:00 committed by GitHub
commit 7095846c1e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 ");
}