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/parser/TokenLookup.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.parser; import static jdk.nashorn.internal.parser.TokenKind.SPECIAL; import static jdk.nashorn.internal.parser.TokenType.IDENT; /** * Fast lookup of operators and keywords. * */ public final class TokenLookup { /** * Lookup table for tokens. */ private static final TokenType[] table; /** * Table base character. */ private static final int tableBase = ' '; /** * Table base character. */ private static final int tableLimit = '~'; /** * Table size. */ private static final int tableLength = tableLimit - tableBase + 1; static { // Construct the table. table = new TokenType[tableLength]; // For each token type. for (final TokenType tokenType : TokenType.getValues()) { // Get the name. final String name = tokenType.getName(); // Filter tokens. if (name == null) { continue; } // Ignore null and special. if (tokenType.getKind() != SPECIAL) { // Get the first character of the name. final char first = name.charAt(0); // Translate that character into a table index. final int index = first - tableBase; assert index < tableLength : "Token name does not fit lookup table"; // Get the length of the token so that the longest come first. final int length = tokenType.getLength(); // Prepare for table insert. TokenType prev = null; TokenType next = table[index]; // Find the right spot in the table. while(next != null && next.getLength() > length) { prev = next; next = next.getNext(); } // Insert in table. tokenType.setNext(next); if (prev == null) { table[index] = tokenType; } else { prev.setNext(tokenType); } } } } private TokenLookup() { } /** * Lookup keyword. * * @param content parse content char array * @param position index of position to start looking * @param length max length to scan * * @return token type for keyword */ public static TokenType lookupKeyword(final char[] content, final int position, final int length) { assert table != null : "Token lookup table is not initialized"; // First character of keyword. final char first = content[position]; // Must be lower case character. if ('a' <= first && first <= 'z') { // Convert to table index. final int index = first - tableBase; // Get first bucket entry. TokenType tokenType = table[index]; // Search bucket list. while (tokenType != null) { final int tokenLength = tokenType.getLength(); // if we have a length match maybe a keyword. if (tokenLength == length) { // Do an exact compare of string. final String name = tokenType.getName(); int i; for (i = 0; i < length; i++) { if (content[position + i] != name.charAt(i)) { break; } } if (i == length) { // Found a match. return tokenType; } } else if (tokenLength < length) { // Rest of tokens are shorter. break; } // Try next token. tokenType = tokenType.getNext(); } } // Not found. return IDENT; } /** * Lookup operator. * * @param ch0 0th char in stream * @param ch1 1st char in stream * @param ch2 2nd char in stream * @param ch3 3rd char in stream * * @return the token type for the operator */ public static TokenType lookupOperator(final char ch0, final char ch1, final char ch2, final char ch3) { assert table != null : "Token lookup table is not initialized"; // Ignore keyword entries. if (tableBase < ch0 && ch0 <= tableLimit && !('a' <= ch0 && ch0 <= 'z')) { // Convert to index. final int index = ch0 - tableBase; // Get first bucket entry. TokenType tokenType = table[index]; // Search bucket list. while (tokenType != null) { final String name = tokenType.getName(); switch (name.length()) { case 1: // One character entry. return tokenType; case 2: // Two character entry. if (name.charAt(1) == ch1) { return tokenType; } break; case 3: // Three character entry. if (name.charAt(1) == ch1 && name.charAt(2) == ch2) { return tokenType; } break; case 4: // Four character entry. if (name.charAt(1) == ch1 && name.charAt(2) == ch2 && name.charAt(3) == ch3) { return tokenType; } break; default: break; } // Try next token. tokenType = tokenType.getNext(); } } // Not found. return null; } }
⏎ jdk/nashorn/internal/parser/TokenLookup.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, 83847👍, 0💬
Popular Posts:
How to download and install JDK (Java Development Kit) 1.4? If you want to write Java applications, ...
maven-core-3.8.6.jar is the JAR file for Apache Maven 3.8.6 Core module. Apache Maven is a software ...
How to download and install JDK (Java Development Kit) 1.3? If you want to write Java applications, ...
Where to find answers to frequently asked questions on Download and Installing of Older Versions? He...
Java Advanced Imaging (JAI) is a Java platform extension API that provides a set of object-oriented ...