creates a new javascript array @param size the size of the array @return an empty array of the given size
(long size)
| 189 | * @return an empty array of the given size |
| 190 | */ |
| 191 | public Scriptable jsNewArray(long size) { |
| 192 | return getContext().newArray(scope, (int)size); |
| 193 | } |
| 194 | |
| 195 | public JsScriptEngine() { |
| 196 | Context context = getContext(); |
no test coverage detected