Skip to content

Commit

Permalink
Updated as per review feedback for failing tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pkkht committed Dec 27, 2023
1 parent 20604f9 commit 921af08
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/org/mozilla/javascript/NativeArray.java
Original file line number Diff line number Diff line change
Expand Up @@ -2752,9 +2752,9 @@ protected int findPrototypeId(String s) {
Id_at = 32,
Id_flat = 33,
Id_flatMap = 34,
Id_toReversed = 36,
SymbolId_iterator = 37,
MAX_PROTOTYPE_ID = Id_toReversed;
Id_toReversed = 35,
SymbolId_iterator = 36,
MAX_PROTOTYPE_ID = SymbolId_iterator;
private static final int ConstructorId_join = -Id_join,
ConstructorId_reverse = -Id_reverse,
ConstructorId_sort = -Id_sort,
Expand Down

0 comments on commit 921af08

Please sign in to comment.