Rhino JavaScript Java Library Source Code

Rhino JavaScript Java Library is an open-source implementation of JavaScript written entirely in Java.

Rhino JavaScript Java Library Source Code files are provided in binary package (rhino-1.7.14.zip).

You can also browse the source code below:

✍: FYIcenter.com

org/mozilla/javascript/StackStyle.java

/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

package org.mozilla.javascript;

/** This class distinguishes between the three different supported stack trace formats. */
public enum StackStyle {
    /**
     * This is the default stack trace style in Rhino, which is like Java: <code>
     *     at fileName:lineNumber (functionName)</code>
     */
    RHINO,

    /**
     * This stack trace style comes from the old Mozilla code: <code>
     * functionName()@fileName:lineNumber</code>
     */
    MOZILLA,

    /**
     * This is the same as MOZILLA but uses LF as speparator instead of the system dependent line
     * separator.
     */
    MOZILLA_LF,

    /**
     * This stack trace style matches that output from V8, either: <code>
     *     at functionName (fileName:lineNumber:columnNumber)</code> or, for anonymous functions:
     * <code>    at fileName:lineNumber:columnNumber</code>
     */
    V8
}

org/mozilla/javascript/StackStyle.java

 

Or download all of them as a single archive file:

File name: rhino-1.7.14-sources.jar
File size: 1029165 bytes
Release date: 2022-01-06
Download 

 

Example code to Test rhino-runtime-1.7.14.jar

Download Rhino JavaScript Binary Package

Download and Review Rhino JavaScript Java Library

⇑⇑ FAQ for Rhino JavaScript Java Library

2022-05-03, 34553👍, 1💬