nashorn/src/jdk/nashorn/internal/runtime/ScriptObject.java
changeset 16223 dff592a332a4
parent 16217 c5ac9be5c444
child 16224 0c49ad4e3b55
equal deleted inserted replaced
16222:3e057d4357e0 16223:dff592a332a4
    87  */
    87  */
    88 
    88 
    89 public abstract class ScriptObject extends PropertyListenerManager implements PropertyAccess {
    89 public abstract class ScriptObject extends PropertyListenerManager implements PropertyAccess {
    90 
    90 
    91     /** Search fall back routine name for "no such method" */
    91     /** Search fall back routine name for "no such method" */
    92     public static final String NO_SUCH_METHOD_NAME   = "__noSuchMethod__";
    92     static final String NO_SUCH_METHOD_NAME   = "__noSuchMethod__";
    93 
    93 
    94     /** Search fall back routine name for "no such property" */
    94     /** Search fall back routine name for "no such property" */
    95     public static final String NO_SUCH_PROPERTY_NAME = "__noSuchProperty__";
    95     static final String NO_SUCH_PROPERTY_NAME = "__noSuchProperty__";
    96 
    96 
    97     /** Per ScriptObject flag - is this a scope object? */
    97     /** Per ScriptObject flag - is this a scope object? */
    98     public static final int IS_SCOPE       = 0b0000_0001;
    98     public static final int IS_SCOPE       = 0b0000_0001;
    99 
    99 
   100     /** Per ScriptObject flag - is this an array object? */
   100     /** Per ScriptObject flag - is this an array object? */