jdk.nashorn.internal.ir.debug.JSONWriter Java Examples

The following examples show how to use jdk.nashorn.internal.ir.debug.JSONWriter. 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: ScriptRuntime.java    From TencentKona-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted(), code, name, includeLoc);
}
 
Example #2
Source File: ScriptRuntime.java    From jdk8u60 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted(), code, name, includeLoc);
}
 
Example #3
Source File: ScriptRuntime.java    From openjdk-jdk8u with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted(), code, name, includeLoc);
}
 
Example #4
Source File: ScriptRuntime.java    From openjdk-jdk8u-backup with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted(), code, name, includeLoc);
}
 
Example #5
Source File: ScriptRuntime.java    From openjdk-jdk9 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted(), code, name, includeLoc);
}
 
Example #6
Source File: ScriptRuntime.java    From hottub with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted(), code, name, includeLoc);
}
 
Example #7
Source File: ScriptRuntime.java    From openjdk-8-source with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted().getEnv(), code, name, includeLoc);
}
 
Example #8
Source File: ScriptRuntime.java    From openjdk-8 with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted().getEnv(), code, name, includeLoc);
}
 
Example #9
Source File: ScriptRuntime.java    From jdk8u_nashorn with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted(), code, name, includeLoc);
}
 
Example #10
Source File: ScriptRuntime.java    From nashorn with GNU General Public License v2.0 2 votes vote down vote up
/**
 * Returns AST as JSON compatible string. This is used to
 * implement "parse" function in resources/parse.js script.
 *
 * @param code code to be parsed
 * @param name name of the code source (used for location)
 * @param includeLoc tells whether to include location information for nodes or not
 * @return JSON string representation of AST of the supplied code
 */
public static String parse(final String code, final String name, final boolean includeLoc) {
    return JSONWriter.parse(Context.getContextTrusted().getEnv(), code, name, includeLoc);
}