From ddbc2e3477e09a4b73eaa93d074cd40c4b42b51c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mat=C4=9Bj=20=C5=A0t=C3=A1gl?= Date: Sat, 17 Aug 2024 20:08:31 +0200 Subject: [PATCH] Make ObjectWrapper ClrType public (#1946) --- Jint/Runtime/Interop/ObjectWrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jint/Runtime/Interop/ObjectWrapper.cs b/Jint/Runtime/Interop/ObjectWrapper.cs index 0846b09b2..d19b58973 100644 --- a/Jint/Runtime/Interop/ObjectWrapper.cs +++ b/Jint/Runtime/Interop/ObjectWrapper.cs @@ -123,7 +123,7 @@ private static bool TryBuildArrayLikeWrapper( } public object Target { get; } - internal Type ClrType { get; } + public Type ClrType { get; } internal override bool IsArrayLike => _typeDescriptor.IsArrayLike;