Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 11 jdk.scripting.nashorn.jmod - Scripting Nashorn Module
JDK 11 jdk.scripting.nashorn.jmod is the JMOD file for JDK 11 Scripting Nashorn module.
JDK 11 Scripting Nashorn module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\jdk.scripting.nashorn.jmod.
JDK 11 Scripting Nashorn module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Scripting Nashorn module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\jdk.scripting.nashorn.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ jdk/nashorn/internal/runtime/arrays/IteratorAction.java
/*
* Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package jdk.nashorn.internal.runtime.arrays;
import jdk.nashorn.internal.runtime.Context;
import jdk.nashorn.internal.runtime.ScriptRuntime;
import jdk.nashorn.internal.runtime.linker.Bootstrap;
/**
* Helper class for the various map/apply functions in {@link jdk.nashorn.internal.objects.NativeArray}.
* @param <T> element type of results from application callback
*/
public abstract class IteratorAction<T> {
/** Self object */
protected final Object self;
/** This for the callback invocation */
protected Object thisArg;
/** Callback function to be applied to elements */
protected final Object callbackfn;
/** Result of array iteration */
protected T result;
/** Current array index of iterator */
protected long index;
/** Iterator object */
private final ArrayLikeIterator<Object> iter;
/**
* Constructor
*
* @param self self reference to array object
* @param callbackfn callback function for each element
* @param thisArg the reference
* @param initialResult result accumulator initialization
*/
public IteratorAction(final Object self, final Object callbackfn, final Object thisArg, final T initialResult) {
this(self, callbackfn, thisArg, initialResult, ArrayLikeIterator.arrayLikeIterator(self));
}
/**
* Constructor
*
* @param self self reference to array object
* @param callbackfn callback function for each element
* @param thisArg the reference
* @param initialResult result accumulator initialization
* @param iter custom element iterator
*/
public IteratorAction(final Object self, final Object callbackfn, final Object thisArg, final T initialResult, final ArrayLikeIterator<Object> iter) {
this.self = self;
this.callbackfn = callbackfn;
this.result = initialResult;
this.iter = iter;
this.thisArg = thisArg;
}
/**
* An action to be performed once at the start of the apply loop
* @param iterator array element iterator
*/
protected void applyLoopBegin(final ArrayLikeIterator<Object> iterator) {
//empty
}
/**
* Apply action main loop.
* @return result of apply
*/
public final T apply() {
final boolean strict = Bootstrap.isStrictCallable(callbackfn);
// for non-strict callback, need to translate undefined thisArg to be global object
thisArg = (thisArg == ScriptRuntime.UNDEFINED && !strict)? Context.getGlobal() : thisArg;
applyLoopBegin(iter);
final boolean reverse = iter.isReverse();
while (iter.hasNext()) {
final Object val = iter.next();
index = iter.nextIndex() + (reverse ? 1 : -1);
try {
if (!forEach(val, index)) {
return result;
}
} catch (final RuntimeException | Error e) {
throw e;
} catch (final Throwable t) {
throw new RuntimeException(t);
}
}
return result;
}
/**
* For each callback
*
* @param val value
* @param i position of value
*
* @return true if callback invocation return true
*
* @throws Throwable if invocation throws an exception/error
*/
protected abstract boolean forEach(final Object val, final double i) throws Throwable;
}
⏎ jdk/nashorn/internal/runtime/arrays/IteratorAction.java
Or download all of them as a single archive file:
File name: jdk.scripting.nashorn-11.0.1-src.zip File size: 1390965 bytes Release date: 2018-11-04 Download
⇒ JDK 11 jdk.scripting.nashorn.shell.jmod - Scripting Nashorn Shell Module
2020-04-25, ≈316🔥, 0💬
Popular Posts:
JEuclid Source Code Files are provided the JEuclid GitHub Website . You can browse JEuclid Source Co...
JDK 11 java.compiler.jmod is the JMOD file for JDK 11 Compiler module. JDK 11 Compiler module compil...
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...
JDK 11 jdk.jfr.jmod is the JMOD file for JDK 11 JFR module. JDK 11 JFR module compiled class files a...
JDK 7 tools.jar is the JAR file for JDK 7 tools. It contains Java classes to support different JDK t...