Java Code Examples for jdk.nashorn.internal.runtime.ScriptObject#getArray()
The following examples show how to use
jdk.nashorn.internal.runtime.ScriptObject#getArray() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: NativeArray.java From TencentKona-8 with GNU General Public License v2.0 | 6 votes |
/** * ECMA 15.4.4.7 Array.prototype.push (args...) specialized for single object argument * * @param self self reference * @param arg argument to push * @return array after pushes */ @SpecializedFunction public static double push(final Object self, final Object arg) { try { final ScriptObject sobj = (ScriptObject)self; final ArrayData arrayData = sobj.getArray(); final long length = arrayData.length(); if (bulkable(sobj) && length < JSType.MAX_UINT) { sobj.setArray(arrayData.push(true, arg)); return length + 1; } long len = JSType.toUint32(sobj.getLength()); sobj.set(len++, arg, CALLSITE_STRICT); sobj.set("length", len, CALLSITE_STRICT); return len; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 2
Source File: NativeArray.java From jdk8u60 with GNU General Public License v2.0 | 6 votes |
/** * ECMA 15.4.4.7 Array.prototype.push (args...) specialized for single object argument * * @param self self reference * @param arg argument to push * @return array after pushes */ @SpecializedFunction public static long push(final Object self, final Object arg) { try { final ScriptObject sobj = (ScriptObject)self; final ArrayData arrayData = sobj.getArray(); final long length = arrayData.length(); if (bulkable(sobj) && length < JSType.MAX_UINT) { sobj.setArray(arrayData.push(true, arg)); return length + 1; } long len = JSType.toUint32(sobj.getLength()); sobj.set(len++, arg, CALLSITE_STRICT); sobj.set("length", len, CALLSITE_STRICT); return len; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 3
Source File: NativeArray.java From openjdk-jdk8u with GNU General Public License v2.0 | 6 votes |
/** * ECMA 15.4.4.7 Array.prototype.push (args...) specialized for single object argument * * @param self self reference * @param arg argument to push * @return array after pushes */ @SpecializedFunction public static double push(final Object self, final Object arg) { try { final ScriptObject sobj = (ScriptObject)self; final ArrayData arrayData = sobj.getArray(); final long length = arrayData.length(); if (bulkable(sobj) && length < JSType.MAX_UINT) { sobj.setArray(arrayData.push(true, arg)); return length + 1; } long len = JSType.toUint32(sobj.getLength()); sobj.set(len++, arg, CALLSITE_STRICT); sobj.set("length", len, CALLSITE_STRICT); return len; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 4
Source File: NativeArray.java From jdk8u_nashorn with GNU General Public License v2.0 | 6 votes |
/** * ECMA 15.4.4.7 Array.prototype.push (args...) specialized for single object argument * * @param self self reference * @param arg argument to push * @return array after pushes */ @SpecializedFunction public static double push(final Object self, final Object arg) { try { final ScriptObject sobj = (ScriptObject)self; final ArrayData arrayData = sobj.getArray(); final long length = arrayData.length(); if (bulkable(sobj) && length < JSType.MAX_UINT) { sobj.setArray(arrayData.push(true, arg)); return length + 1; } long len = JSType.toUint32(sobj.getLength()); sobj.set(len++, arg, CALLSITE_STRICT); sobj.set("length", len, CALLSITE_STRICT); return len; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 5
Source File: NativeArray.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 6 votes |
/** * ECMA 15.4.4.7 Array.prototype.push (args...) specialized for single object argument * * @param self self reference * @param arg argument to push * @return array after pushes */ @SpecializedFunction public static double push(final Object self, final Object arg) { try { final ScriptObject sobj = (ScriptObject)self; final ArrayData arrayData = sobj.getArray(); final long length = arrayData.length(); if (bulkable(sobj) && length < JSType.MAX_UINT) { sobj.setArray(arrayData.push(true, arg)); return length + 1; } long len = JSType.toUint32(sobj.getLength()); sobj.set(len++, arg, CALLSITE_STRICT); sobj.set("length", len, CALLSITE_STRICT); return len; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 6
Source File: NativeArray.java From openjdk-jdk9 with GNU General Public License v2.0 | 6 votes |
/** * ECMA 15.4.4.7 Array.prototype.push (args...) specialized for single object argument * * @param self self reference * @param arg argument to push * @return array after pushes */ @SpecializedFunction public static double push(final Object self, final Object arg) { try { final ScriptObject sobj = (ScriptObject)self; final ArrayData arrayData = sobj.getArray(); final long length = arrayData.length(); if (bulkable(sobj) && length < JSType.MAX_UINT) { sobj.setArray(arrayData.push(true, arg)); return length + 1; } long len = JSType.toUint32(sobj.getLength()); sobj.set(len++, arg, CALLSITE_STRICT); sobj.set("length", len, CALLSITE_STRICT); return len; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 7
Source File: NativeArray.java From hottub with GNU General Public License v2.0 | 6 votes |
/** * ECMA 15.4.4.7 Array.prototype.push (args...) specialized for single object argument * * @param self self reference * @param arg argument to push * @return array after pushes */ @SpecializedFunction public static double push(final Object self, final Object arg) { try { final ScriptObject sobj = (ScriptObject)self; final ArrayData arrayData = sobj.getArray(); final long length = arrayData.length(); if (bulkable(sobj) && length < JSType.MAX_UINT) { sobj.setArray(arrayData.push(true, arg)); return length + 1; } long len = JSType.toUint32(sobj.getLength()); sobj.set(len++, arg, CALLSITE_STRICT); sobj.set("length", len, CALLSITE_STRICT); return len; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 8
Source File: NativeArray.java From nashorn with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static Object sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (long i = 0; i < len; i = array.nextIndex(i)) { if (array.has((int) i)) { src.add(array.getObject((int) i)); } } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 9
Source File: NativeArray.java From jdk8u_nashorn with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static ScriptObject sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (final Iterator<Long> iter = array.indexIterator(); iter.hasNext(); ) { final long index = iter.next(); if (index >= len) { break; } src.add(array.getObject((int)index)); } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 10
Source File: NativeArray.java From openjdk-8 with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static Object sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (long i = 0; i < len; i = array.nextIndex(i)) { if (array.has((int) i)) { src.add(array.getObject((int) i)); } } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 11
Source File: NativeArray.java From openjdk-8-source with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static Object sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (long i = 0; i < len; i = array.nextIndex(i)) { if (array.has((int) i)) { src.add(array.getObject((int) i)); } } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 12
Source File: NativeArray.java From hottub with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static ScriptObject sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (final Iterator<Long> iter = array.indexIterator(); iter.hasNext(); ) { final long index = iter.next(); if (index >= len) { break; } src.add(array.getObject((int)index)); } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 13
Source File: NativeArray.java From openjdk-jdk9 with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static ScriptObject sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (final Iterator<Long> iter = array.indexIterator(); iter.hasNext(); ) { final long index = iter.next(); if (index >= len) { break; } src.add(array.getObject((int)index)); } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 14
Source File: NativeArray.java From openjdk-jdk8u-backup with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static ScriptObject sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (final Iterator<Long> iter = array.indexIterator(); iter.hasNext(); ) { final long index = iter.next(); if (index >= len) { break; } src.add(array.getObject((int)index)); } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 15
Source File: NativeArray.java From openjdk-jdk8u with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static ScriptObject sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (final Iterator<Long> iter = array.indexIterator(); iter.hasNext(); ) { final long index = iter.next(); if (index >= len) { break; } src.add(array.getObject((int)index)); } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 16
Source File: NativeArray.java From jdk8u60 with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static ScriptObject sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (final Iterator<Long> iter = array.indexIterator(); iter.hasNext(); ) { final long index = iter.next(); if (index >= len) { break; } src.add(array.getObject((int)index)); } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }
Example 17
Source File: NativeArray.java From TencentKona-8 with GNU General Public License v2.0 | 5 votes |
/** * ECMA 15.4.4.11 Array.prototype.sort ( comparefn ) * * @param self self reference * @param comparefn element comparison function * @return sorted array */ @Function(attributes = Attribute.NOT_ENUMERABLE) public static ScriptObject sort(final Object self, final Object comparefn) { try { final ScriptObject sobj = (ScriptObject) self; final long len = JSType.toUint32(sobj.getLength()); ArrayData array = sobj.getArray(); if (len > 1) { // Get only non-missing elements. Missing elements go at the end // of the sorted array. So, just don't copy these to sort input. final ArrayList<Object> src = new ArrayList<>(); for (final Iterator<Long> iter = array.indexIterator(); iter.hasNext(); ) { final long index = iter.next(); if (index >= len) { break; } src.add(array.getObject((int)index)); } final Object[] sorted = sort(src.toArray(), comparefn); for (int i = 0; i < sorted.length; i++) { array = array.set(i, sorted[i], true); } // delete missing elements - which are at the end of sorted array if (sorted.length != len) { array = array.delete(sorted.length, len - 1); } sobj.setArray(array); } return sobj; } catch (final ClassCastException | NullPointerException e) { throw typeError("not.an.object", ScriptRuntime.safeToString(self)); } }