Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1017)

Unified Diff: src/js/messages.js

Issue 1510153002: Revert of Support intriscDefaultProto for Error functions (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/isolate.cc ('k') | test/mjsunit/error-constructors.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/js/messages.js
diff --git a/src/js/messages.js b/src/js/messages.js
index dc845ea97adc855fa7d0847374dad1af99e7551a..8db1166ff472ef1853ba579fc21268057230d10a 100644
--- a/src/js/messages.js
+++ b/src/js/messages.js
@@ -908,45 +908,59 @@
var captureStackTrace = function() {};
-// Set up special error type constructors.
-function SetUpError(error_function) {
- %FunctionSetInstanceClassName(error_function, 'Error');
- var name = error_function.name;
- var prototype = new GlobalObject();
- if (name !== 'Error') {
- %InternalSetPrototype(error_function, GlobalError);
- %InternalSetPrototype(prototype, GlobalError.prototype);
- }
- %FunctionSetPrototype(error_function, prototype);
-
- %AddNamedProperty(error_function.prototype, 'name', name, DONT_ENUM);
- %AddNamedProperty(error_function.prototype, 'message', '', DONT_ENUM);
- %AddNamedProperty(
- error_function.prototype, 'constructor', error_function, DONT_ENUM);
-
- %SetCode(error_function, function(m) {
- if (IS_UNDEFINED(new.target)) return new error_function(m);
-
- try { captureStackTrace(this, error_function); } catch (e) { }
- // Define all the expected properties directly on the error
- // object. This avoids going through getters and setters defined
- // on prototype objects.
- if (!IS_UNDEFINED(m)) {
- %AddNamedProperty(this, 'message', TO_STRING(m), DONT_ENUM);
+// Define special error type constructors.
+function DefineError(global, f) {
+ // Store the error function in both the global object
+ // and the runtime object. The function is fetched
+ // from the runtime object when throwing errors from
+ // within the runtime system to avoid strange side
+ // effects when overwriting the error functions from
+ // user code.
+ var name = f.name;
+ %AddNamedProperty(global, name, f, DONT_ENUM);
+ // Configure the error function.
+ if (name == 'Error') {
+ // The prototype of the Error object must itself be an error.
+ // However, it can't be an instance of the Error object because
+ // it hasn't been properly configured yet. Instead we create a
+ // special not-a-true-error-but-close-enough object.
+ var ErrorPrototype = function() {};
+ %FunctionSetPrototype(ErrorPrototype, GlobalObject.prototype);
+ %FunctionSetInstanceClassName(ErrorPrototype, 'Error');
+ %FunctionSetPrototype(f, new ErrorPrototype());
+ } else {
+ %FunctionSetPrototype(f, new GlobalError());
+ %InternalSetPrototype(f, GlobalError);
+ }
+ %FunctionSetInstanceClassName(f, 'Error');
+ %AddNamedProperty(f.prototype, 'constructor', f, DONT_ENUM);
+ %AddNamedProperty(f.prototype, 'name', name, DONT_ENUM);
+ %SetCode(f, function(m) {
+ if (!IS_UNDEFINED(new.target)) {
+ try { captureStackTrace(this, f); } catch (e) { }
+ // Define all the expected properties directly on the error
+ // object. This avoids going through getters and setters defined
+ // on prototype objects.
+ if (!IS_UNDEFINED(m)) {
+ %AddNamedProperty(this, 'message', TO_STRING(m), DONT_ENUM);
+ }
+ } else {
+ return new f(m);
}
});
-
- %SetNativeFlag(error_function);
- return error_function;
+ %SetNativeFlag(f);
+ return f;
};
-GlobalError = SetUpError(global.Error);
-GlobalEvalError = SetUpError(global.EvalError);
-GlobalRangeError = SetUpError(global.RangeError);
-GlobalReferenceError = SetUpError(global.ReferenceError);
-GlobalSyntaxError = SetUpError(global.SyntaxError);
-GlobalTypeError = SetUpError(global.TypeError);
-GlobalURIError = SetUpError(global.URIError);
+GlobalError = DefineError(global, function Error() { });
+GlobalEvalError = DefineError(global, function EvalError() { });
+GlobalRangeError = DefineError(global, function RangeError() { });
+GlobalReferenceError = DefineError(global, function ReferenceError() { });
+GlobalSyntaxError = DefineError(global, function SyntaxError() { });
+GlobalTypeError = DefineError(global, function TypeError() { });
+GlobalURIError = DefineError(global, function URIError() { });
+
+%AddNamedProperty(GlobalError.prototype, 'message', '', DONT_ENUM);
utils.InstallFunctions(GlobalError.prototype, DONT_ENUM,
['toString', ErrorToString]);
@@ -997,6 +1011,8 @@
GlobalError.captureStackTrace = captureStackTrace;
%InstallToContext([
+ "error_function", GlobalError,
+ "eval_error_function", GlobalEvalError,
"get_stack_trace_line_fun", GetStackTraceLine,
"make_error_function", MakeGenericError,
"make_range_error", MakeRangeError,
@@ -1005,8 +1021,13 @@
"message_get_line_number", GetLineNumber,
"message_get_source_line", GetSourceLine,
"no_side_effect_to_string_fun", NoSideEffectToString,
+ "range_error_function", GlobalRangeError,
+ "reference_error_function", GlobalReferenceError,
"stack_overflow_boilerplate", StackOverflowBoilerplate,
+ "syntax_error_function", GlobalSyntaxError,
"to_detail_string_fun", ToDetailString,
+ "type_error_function", GlobalTypeError,
+ "uri_error_function", GlobalURIError,
]);
utils.Export(function(to) {
« no previous file with comments | « src/isolate.cc ('k') | test/mjsunit/error-constructors.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698