Browse Source

Make ArgumentsInstance internal (#1594)

Marko Lahma 2 years ago
parent
commit
a41a0e3c67
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Jint/Native/Argument/ArgumentsInstance.cs

+ 1 - 1
Jint/Native/Argument/ArgumentsInstance.cs

@@ -13,7 +13,7 @@ namespace Jint.Native.Argument
     /// <summary>
     /// <summary>
     /// http://www.ecma-international.org/ecma-262/5.1/#sec-10.6
     /// http://www.ecma-international.org/ecma-262/5.1/#sec-10.6
     /// </summary>
     /// </summary>
-    public sealed class ArgumentsInstance : ObjectInstance
+    internal sealed class ArgumentsInstance : ObjectInstance
     {
     {
         // cache property container for array iteration for less allocations
         // cache property container for array iteration for less allocations
         private static readonly ThreadLocal<HashSet<string>> _mappedNamed = new(() => new HashSet<string>());
         private static readonly ThreadLocal<HashSet<string>> _mappedNamed = new(() => new HashSet<string>());