Skip to content

Commit

Permalink
Make JsSet int indexer internal (#1989)
Browse files Browse the repository at this point in the history
* might not be easily available if backing storage changes
  • Loading branch information
lahma authored Oct 27, 2024
1 parent 1461bf1 commit c3d86d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Jint/Native/JsSet.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ internal JsSet(Engine engine, OrderedSet<JsValue> set) : base(engine)

public int Size => _set.Count;

public JsValue? this[int index]
internal JsValue? this[int index]
{
get { return index < _set._list.Count ? _set._list[index] : null; }
}
Expand Down

0 comments on commit c3d86d8

Please sign in to comment.