src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/ScriptEnvironment.java
changeset 50878 fb7800b66c92
parent 47366 cefe2083f3d1
equal deleted inserted replaced
50877:700fffd3c871 50878:fb7800b66c92
   106     public final boolean _global_per_engine;
   106     public final boolean _global_per_engine;
   107 
   107 
   108     /** Enable experimental ECMAScript 6 features. */
   108     /** Enable experimental ECMAScript 6 features. */
   109     public final boolean _es6;
   109     public final boolean _es6;
   110 
   110 
       
   111     /** do not show deprecation warning for nashorn engine and jjs usage. */
       
   112     public final boolean _no_deprecation_warning;
   111 
   113 
   112     /** Number of times a dynamic call site has to be relinked before it is
   114     /** Number of times a dynamic call site has to be relinked before it is
   113      * considered unstable (and thus should be linked as if it were megamorphic).
   115      * considered unstable (and thus should be linked as if it were megamorphic).
   114      */
   116      */
   115     public final int _unstable_relink_threshold;
   117     public final int _unstable_relink_threshold;
   304         _print_symbols        = options.getBoolean("print.symbols");
   306         _print_symbols        = options.getBoolean("print.symbols");
   305         _scripting            = options.getBoolean("scripting");
   307         _scripting            = options.getBoolean("scripting");
   306         _strict               = options.getBoolean("strict");
   308         _strict               = options.getBoolean("strict");
   307         _version              = options.getBoolean("version");
   309         _version              = options.getBoolean("version");
   308         _verify_code          = options.getBoolean("verify.code");
   310         _verify_code          = options.getBoolean("verify.code");
       
   311         _no_deprecation_warning = options.getBoolean("no.deprecation.warning");
   309 
   312 
   310         final int configuredUrt = options.getInteger("unstable.relink.threshold");
   313         final int configuredUrt = options.getInteger("unstable.relink.threshold");
   311         // The default for this property is -1, so we can easily detect when
   314         // The default for this property is -1, so we can easily detect when
   312         // it is not specified on command line.
   315         // it is not specified on command line.
   313         if (configuredUrt < 0) {
   316         if (configuredUrt < 0) {