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

Unified Diff: src/js/harmony-reflect.js

Issue 1413173003: Move error message makers off js builtins object. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: rebase Created 5 years, 2 months 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/js/harmony-atomics.js ('k') | src/js/harmony-regexp.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/js/harmony-reflect.js
diff --git a/src/js/harmony-reflect.js b/src/js/harmony-reflect.js
index 76effa1e3fd833a8c2d6b646be2a27b16a197b84..bbca0fef618ac5bd917239ff5a070ef94c3f6cfb 100644
--- a/src/js/harmony-reflect.js
+++ b/src/js/harmony-reflect.js
@@ -8,10 +8,20 @@
%CheckIsBootstrapping();
+// -------------------------------------------------------------------
+// Imports
+
var GlobalReflect = global.Reflect;
+var MakeTypeError;
var ReflectApply = utils.ImportNow("reflect_apply");
var ReflectConstruct = utils.ImportNow("reflect_construct");
+utils.Import(function(from) {
+ MakeTypeError = from.MakeTypeError;
+});
+
+// -------------------------------------------------------------------
+
function ReflectEnumerate(obj) {
if (!IS_SPEC_OBJECT(obj))
throw MakeTypeError(kCalledOnNonObject, "Reflect.enumerate")
« no previous file with comments | « src/js/harmony-atomics.js ('k') | src/js/harmony-regexp.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698