< prev index next >

src/jdk/nashorn/internal/runtime/arrays/FrozenArrayFilter.java

Print this page

        

*** 55,72 **** } return this; } @Override - public ArrayData set(final int index, final long value, final boolean strict) { - if (strict) { - throw typeError("cant.set.property", Integer.toString(index), "frozen array"); - } - return this; - } - - @Override public ArrayData set(final int index, final double value, final boolean strict) { if (strict) { throw typeError("cant.set.property", Integer.toString(index), "frozen array"); } return this; --- 55,64 ----
< prev index next >