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/ir/TernaryNode.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.ir; import jdk.nashorn.internal.codegen.types.Type; import jdk.nashorn.internal.ir.annotations.Immutable; import jdk.nashorn.internal.ir.visitor.NodeVisitor; import jdk.nashorn.internal.parser.TokenType; /** * TernaryNode represent the ternary operator {@code ?:}. Note that for control-flow calculation reasons its branch * expressions (but not its test expression) are always wrapped in instances of {@link JoinPredecessorExpression}. */ @Immutable public final class TernaryNode extends Expression { private static final long serialVersionUID = 1L; private final Expression test; private final JoinPredecessorExpression trueExpr; private final JoinPredecessorExpression falseExpr; /** * Constructor * * @param token token * @param test test expression * @param trueExpr expression evaluated when test evaluates to true * @param falseExpr expression evaluated when test evaluates to true */ public TernaryNode(final long token, final Expression test, final JoinPredecessorExpression trueExpr, final JoinPredecessorExpression falseExpr) { super(token, falseExpr.getFinish()); this.test = test; this.trueExpr = trueExpr; this.falseExpr = falseExpr; } private TernaryNode(final TernaryNode ternaryNode, final Expression test, final JoinPredecessorExpression trueExpr, final JoinPredecessorExpression falseExpr) { super(ternaryNode); this.test = test; this.trueExpr = trueExpr; this.falseExpr = falseExpr; } @Override public Node accept(final NodeVisitor<? extends LexicalContext> visitor) { if (visitor.enterTernaryNode(this)) { final Expression newTest = (Expression)getTest().accept(visitor); final JoinPredecessorExpression newTrueExpr = (JoinPredecessorExpression)trueExpr.accept(visitor); final JoinPredecessorExpression newFalseExpr = (JoinPredecessorExpression)falseExpr.accept(visitor); return visitor.leaveTernaryNode(setTest(newTest).setTrueExpression(newTrueExpr).setFalseExpression(newFalseExpr)); } return this; } @Override public void toString(final StringBuilder sb, final boolean printType) { final TokenType tokenType = tokenType(); final boolean testParen = tokenType.needsParens(getTest().tokenType(), true); final boolean trueParen = tokenType.needsParens(getTrueExpression().tokenType(), false); final boolean falseParen = tokenType.needsParens(getFalseExpression().tokenType(), false); if (testParen) { sb.append('('); } getTest().toString(sb, printType); if (testParen) { sb.append(')'); } sb.append(" ? "); if (trueParen) { sb.append('('); } getTrueExpression().toString(sb, printType); if (trueParen) { sb.append(')'); } sb.append(" : "); if (falseParen) { sb.append('('); } getFalseExpression().toString(sb, printType); if (falseParen) { sb.append(')'); } } @Override public boolean isLocal() { return getTest().isLocal() && getTrueExpression().isLocal() && getFalseExpression().isLocal(); } @Override public Type getType() { return Type.widestReturnType(getTrueExpression().getType(), getFalseExpression().getType()); } /** * Get the test expression for this ternary expression, i.e. "x" in x ? y : z * @return the test expression */ public Expression getTest() { return test; } /** * Get the true expression for this ternary expression, i.e. "y" in x ? y : z * @return the true expression */ public JoinPredecessorExpression getTrueExpression() { return trueExpr; } /** * Get the false expression for this ternary expression, i.e. "z" in x ? y : z * @return the false expression */ public JoinPredecessorExpression getFalseExpression() { return falseExpr; } /** * Set the test expression for this node * @param test new test expression * @return a node equivalent to this one except for the requested change. */ public TernaryNode setTest(final Expression test) { if (this.test == test) { return this; } return new TernaryNode(this, test, trueExpr, falseExpr); } /** * Set the true expression for this node * @param trueExpr new true expression * @return a node equivalent to this one except for the requested change. */ public TernaryNode setTrueExpression(final JoinPredecessorExpression trueExpr) { if (this.trueExpr == trueExpr) { return this; } return new TernaryNode(this, test, trueExpr, falseExpr); } /** * Set the false expression for this node * @param falseExpr new false expression * @return a node equivalent to this one except for the requested change. */ public TernaryNode setFalseExpression(final JoinPredecessorExpression falseExpr) { if (this.falseExpr == falseExpr) { return this; } return new TernaryNode(this, test, trueExpr, falseExpr); } }
⏎ jdk/nashorn/internal/ir/TernaryNode.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, 83059👍, 0💬
Popular Posts:
Smack is an Open Source XMPP (Jabber) client library for instant messaging and presence. A pure Java...
JDK 11 java.sql.rowset.jmod is the JMOD file for JDK 11 SQL Rowset module. JDK 11 SQL Rowset module ...
Apache Ant Source Code Files are inside the Apache Ant source package file like apache-ant-1.10.10-s...
The JSR 105 XML Digital Signature 1.0.1 FCS implementation provides an API and implementation that a...
How to run "jar" command from JDK tools.jar file? "jar" is the JAR (Java Archive) file management co...