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

Unified Diff: src/js/harmony-array-includes.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-array.js ('k') | src/js/harmony-atomics.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/js/harmony-array-includes.js
diff --git a/src/js/harmony-array-includes.js b/src/js/harmony-array-includes.js
index 54f68a7ce30d3e86f66432c9bdb75a6413c81d35..bb1f01cd5761c42ced4c0dbeaea67dfc6de6c327 100644
--- a/src/js/harmony-array-includes.js
+++ b/src/js/harmony-array-includes.js
@@ -8,10 +8,15 @@
%CheckIsBootstrapping();
+// -------------------------------------------------------------------
+// Imports
+
var GlobalArray = global.Array;
+var MakeTypeError;
var SameValueZero;
utils.Import(function(from) {
+ MakeTypeError = from.MakeTypeError;
SameValueZero = from.SameValueZero;
});
« no previous file with comments | « src/js/harmony-array.js ('k') | src/js/harmony-atomics.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698