added forgotten $set on arrays

This commit is contained in:
Renaud Pawlak 2017-05-03 16:07:47 +02:00
parent 11c8062111
commit 6867013d68
2 changed files with 4 additions and 0 deletions

View File

@ -379,6 +379,8 @@ public class Array<T> extends def.js.Object implements Iterable<T> {
native public T $get(int n);
native public T $set(int n, T value);
public Array(int arrayLength) {
}

View File

@ -394,6 +394,8 @@ public class Array<T> extends Iterable<T> implements java.lang.Iterable<T> {
native public T $get(int n);
native public T $set(int n, T value);
public Array(int arrayLength) {
}