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

Unified Diff: lib/runtime/dart/_interceptors.js

Issue 1633003002: Add --modules=node support (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: regen sdk and expectations Created 4 years, 11 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
Index: lib/runtime/dart/_interceptors.js
diff --git a/lib/runtime/dart/_interceptors.js b/lib/runtime/dart/_interceptors.js
index 349dd22e34bb229037d80a4fc6c60f1c5d0b0e25..543a494ae3f6f089a7b460b2fadf3bb98fb04a52 100644
--- a/lib/runtime/dart/_interceptors.js
+++ b/lib/runtime/dart/_interceptors.js
@@ -428,7 +428,7 @@ dart_library.library('dart/_interceptors', null, /* Imports */[
JSArray[dart.metadata] = () => [dart.const(new _js_helper.JsPeerInterface({name: 'Array'}))];
return JSArray;
});
- let JSArray = JSArray$();
+ const JSArray = JSArray$();
dart.registerExtension(dart.global.Array, JSArray);
const JSMutableArray$ = dart.generic(function(E) {
class JSMutableArray extends JSArray$(E) {
@@ -439,17 +439,17 @@ dart_library.library('dart/_interceptors', null, /* Imports */[
JSMutableArray[dart.implements] = () => [JSMutableIndexable];
return JSMutableArray;
});
- let JSMutableArray = JSMutableArray$();
+ const JSMutableArray = JSMutableArray$();
const JSFixedArray$ = dart.generic(function(E) {
class JSFixedArray extends JSMutableArray$(E) {}
return JSFixedArray;
});
- let JSFixedArray = JSFixedArray$();
+ const JSFixedArray = JSFixedArray$();
const JSExtendableArray$ = dart.generic(function(E) {
class JSExtendableArray extends JSMutableArray$(E) {}
return JSExtendableArray;
});
- let JSExtendableArray = JSExtendableArray$();
+ const JSExtendableArray = JSExtendableArray$();
class Interceptor extends core.Object {
Interceptor() {
}

Powered by Google App Engine
This is Rietveld 408576698