nashorn/src/jdk/nashorn/internal/objects/NativeEvalError.java
changeset 23084 6c5c02d1023a
parent 22389 ea3dda90768c
child 23375 a1110f2cbe75
equal deleted inserted replaced
23083:8c74590d5df1 23084:6c5c02d1023a
    76         }
    76         }
    77         NativeError.initException(this);
    77         NativeError.initException(this);
    78     }
    78     }
    79 
    79 
    80     NativeEvalError(final Object msg, final Global global) {
    80     NativeEvalError(final Object msg, final Global global) {
    81         this(msg, global.getEvalErrorPrototype(), global.getEvalErrorMap());
    81         this(msg, global.getEvalErrorPrototype(), getInitialMap());
    82     }
    82     }
    83 
    83 
    84     private NativeEvalError(final Object msg) {
    84     private NativeEvalError(final Object msg) {
    85         this(msg, Global.instance());
    85         this(msg, Global.instance());
    86     }
    86     }