Skip to content

Commit

Permalink
Make ArgumentsInstance internal (sebastienros#1594)
Browse files Browse the repository at this point in the history
  • Loading branch information
lahma committed Jul 28, 2023
1 parent 0163e1a commit a41a0e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jint/Native/Argument/ArgumentsInstance.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ namespace Jint.Native.Argument
/// <summary>
/// http://www.ecma-international.org/ecma-262/5.1/#sec-10.6
/// </summary>
public sealed class ArgumentsInstance : ObjectInstance
internal sealed class ArgumentsInstance : ObjectInstance
{
// cache property container for array iteration for less allocations
private static readonly ThreadLocal<HashSet<string>> _mappedNamed = new(() => new HashSet<string>());
Expand Down

0 comments on commit a41a0e3

Please sign in to comment.