
org.mozilla.javascript.optimizer.RhinoOperation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rhino Show documentation
Show all versions of rhino Show documentation
Rhino is an open-source implementation of JavaScript written entirely in Java. It is typically
embedded into Java applications to provide scripting to end users.
The newest version!
package org.mozilla.javascript.optimizer;
import jdk.dynalink.Operation;
/**
* A list of operation types used that are specific to Rhino, in addition to standard operations
* like GET and SET...
*/
@SuppressWarnings("AndroidJdkLibsChecker")
public enum RhinoOperation implements Operation {
BIND,
GETNOWARN,
GETSUPER,
GETWITHTHIS,
GETWITHTHISOPTIONAL,
GETELEMENT,
GETELEMENTSUPER,
GETINDEX,
SETSTRICT,
SETCONST,
SETSUPER,
SETELEMENT,
SETELEMENTSUPER,
SETINDEX,
ADD,
EQ,
SHALLOWEQ,
COMPARE_GT,
COMPARE_LT,
COMPARE_GE,
COMPARE_LE,
TOBOOLEAN,
TOINT32,
TOUINT32,
TONUMBER,
TONUMERIC,
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy