Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
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/objects/NativeStrictArguments.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.objects; import static jdk.nashorn.internal.lookup.Lookup.MH; import static jdk.nashorn.internal.runtime.ScriptRuntime.UNDEFINED; import java.lang.invoke.MethodHandle; import java.lang.invoke.MethodHandles; import java.util.ArrayList; import java.util.Arrays; import jdk.nashorn.internal.runtime.AccessorProperty; import jdk.nashorn.internal.runtime.Property; import jdk.nashorn.internal.runtime.PropertyMap; import jdk.nashorn.internal.runtime.ScriptFunction; import jdk.nashorn.internal.runtime.ScriptObject; import jdk.nashorn.internal.runtime.arrays.ArrayData; /** * ECMA 10.6 Arguments Object. * * Arguments object for strict mode functions. */ public final class NativeStrictArguments extends ScriptObject { private static final MethodHandle G$LENGTH = findOwnMH("G$length", Object.class, Object.class); private static final MethodHandle S$LENGTH = findOwnMH("S$length", void.class, Object.class, Object.class); // property map for strict mode arguments object private static final PropertyMap map$; static { final ArrayList<Property> properties = new ArrayList<>(1); properties.add(AccessorProperty.create("length", Property.NOT_ENUMERABLE, G$LENGTH, S$LENGTH)); PropertyMap map = PropertyMap.newMap(properties); // In strict mode, the caller and callee properties should throw TypeError // Need to add properties directly to map since slots are assigned speculatively by newUserAccessors. final int flags = Property.NOT_ENUMERABLE | Property.NOT_CONFIGURABLE; map = map.addPropertyNoHistory(map.newUserAccessors("caller", flags)); map = map.addPropertyNoHistory(map.newUserAccessors("callee", flags)); map$ = map; } static PropertyMap getInitialMap() { return map$; } private Object length; private final Object[] namedArgs; NativeStrictArguments(final Object[] values, final int numParams,final ScriptObject proto, final PropertyMap map) { super(proto, map); setIsArguments(); final ScriptFunction func = Global.instance().getTypeErrorThrower(); // We have to fill user accessor functions late as these are stored // in this object rather than in the PropertyMap of this object. initUserAccessors("caller", func, func); initUserAccessors("callee", func, func); setArray(ArrayData.allocate(values)); this.length = values.length; // extend/truncate named arg array as needed and copy values this.namedArgs = new Object[numParams]; if (numParams > values.length) { Arrays.fill(namedArgs, UNDEFINED); } System.arraycopy(values, 0, namedArgs, 0, Math.min(namedArgs.length, values.length)); } @Override public String getClassName() { return "Arguments"; } /** * getArgument is used for named argument access. */ @Override public Object getArgument(final int key) { return (key >=0 && key < namedArgs.length) ? namedArgs[key] : UNDEFINED; } /** * setArgument is used for named argument set. */ @Override public void setArgument(final int key, final Object value) { if (key >= 0 && key < namedArgs.length) { namedArgs[key] = value; } } /** * Length getter * @param self self reference * @return length property value */ public static Object G$length(final Object self) { if (self instanceof NativeStrictArguments) { return ((NativeStrictArguments)self).getArgumentsLength(); } return 0; } /** * Length setter * @param self self reference * @param value value for length property */ public static void S$length(final Object self, final Object value) { if (self instanceof NativeStrictArguments) { ((NativeStrictArguments)self).setArgumentsLength(value); } } private Object getArgumentsLength() { return length; } private void setArgumentsLength(final Object length) { this.length = length; } private static MethodHandle findOwnMH(final String name, final Class<?> rtype, final Class<?>... types) { return MH.findStatic(MethodHandles.lookup(), NativeStrictArguments.class, name, MH.type(rtype, types)); } }
⏎ jdk/nashorn/internal/objects/NativeStrictArguments.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, 83114👍, 0💬
Popular Posts:
Apache Commons Codec library provides implementations of common encoders and decoders such as Base64...
commons-net.jar is the bytecode of Apache Commons Net library, which implements the client side of m...
How to run "jar" command from JDK tools.jar file? "jar" is the JAR (Java Archive) file management co...
JRE 8 deploy.jar is the JAR file for JRE 8 Java Control Panel and other deploy tools. JRE (Java Runt...
JDK 11 java.base.jmod is the JMOD file for JDK 11 Base module. JDK 11 Base module compiled class fil...