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

Unified Diff: src/uri.js

Issue 1132513003: Call builtin code wrapped in functions from the bootstrapper. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix extra natives Created 5 years, 7 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/typedarray.js ('k') | src/v8natives.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/uri.js
diff --git a/src/uri.js b/src/uri.js
index 8ba20ef6834dca743abfab7accf6692a285ad700..1f4b8b626241d7d1931243ffa7779eae4a66fe7e 100644
--- a/src/uri.js
+++ b/src/uri.js
@@ -5,7 +5,7 @@
// This file contains support for URI manipulations written in
// JavaScript.
-(function() {
+(function(global, shared, exports) {
"use strict";
@@ -40,7 +40,7 @@ function isAlphaNumeric(cc) {
return false;
}
-//Lazily initialized.
+// Lazily initialized.
var hexCharCodeArray = 0;
function URIAddEncodedOctetToBuffer(octet, result, index) {
@@ -365,4 +365,4 @@ $installFunctions(global, DONT_ENUM, [
"encodeURIComponent", URIEncodeComponent
]);
-})();
+})
« no previous file with comments | « src/typedarray.js ('k') | src/v8natives.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698