src/jdk/nashorn/internal/codegen/Compiler.java

changeset 82
abea4ba28901
parent 62
f7825c1a11d3
child 89
43e32b36153c
equal deleted inserted replaced
81:5ead5333fa59 82:abea4ba28901
106 public static final String SCRIPTS_PACKAGE = "jdk/nashorn/internal/scripts"; 106 public static final String SCRIPTS_PACKAGE = "jdk/nashorn/internal/scripts";
107 107
108 /** Name of the objects package */ 108 /** Name of the objects package */
109 public static final String OBJECTS_PACKAGE = "jdk/nashorn/internal/objects"; 109 public static final String OBJECTS_PACKAGE = "jdk/nashorn/internal/objects";
110 110
111 /** Name of the runtime package */
112 public static final String RUNTIME_PACKAGE = "jdk/nashorn/internal/runtime";
113
111 /** Name of the Global object, cannot be referred to as .class, @see CodeGenerator */ 114 /** Name of the Global object, cannot be referred to as .class, @see CodeGenerator */
112 public static final String GLOBAL_OBJECT = OBJECTS_PACKAGE + '/' + "Global"; 115 public static final String GLOBAL_OBJECT = OBJECTS_PACKAGE + '/' + "Global";
113 116
114 /** Name of the ScriptFunctionImpl, cannot be referred to as .class @see FunctionObjectCreator */ 117 /** Name of the ScriptFunctionImpl, cannot be referred to as .class @see FunctionObjectCreator */
115 public static final String SCRIPTFUNCTION_IMPL_OBJECT = OBJECTS_PACKAGE + '/' + "ScriptFunctionImpl"; 118 public static final String SCRIPTFUNCTION_IMPL_OBJECT = OBJECTS_PACKAGE + '/' + "ScriptFunctionImpl";

mercurial