From a41a0e3c67526e2b8cc68c37050055280438a97a Mon Sep 17 00:00:00 2001 From: Marko Lahma Date: Fri, 28 Jul 2023 22:07:01 +0300 Subject: [PATCH] Make ArgumentsInstance internal (#1594) --- Jint/Native/Argument/ArgumentsInstance.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jint/Native/Argument/ArgumentsInstance.cs b/Jint/Native/Argument/ArgumentsInstance.cs index ee161d21fc..41d83967a9 100644 --- a/Jint/Native/Argument/ArgumentsInstance.cs +++ b/Jint/Native/Argument/ArgumentsInstance.cs @@ -13,7 +13,7 @@ namespace Jint.Native.Argument /// /// http://www.ecma-international.org/ecma-262/5.1/#sec-10.6 /// - public sealed class ArgumentsInstance : ObjectInstance + internal sealed class ArgumentsInstance : ObjectInstance { // cache property container for array iteration for less allocations private static readonly ThreadLocal> _mappedNamed = new(() => new HashSet());