equal
deleted
inserted
replaced
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 } |