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

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

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Eliminate top level libraries from loader Created 5 years, 6 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/_internal.js
diff --git a/lib/runtime/dart/_internal.js b/lib/runtime/dart/_internal.js
index 904300581618423707d062e45e5444b2f0f14142..79e8824163b019d2cdc39b2b2521a3e4627e8a0b 100644
--- a/lib/runtime/dart/_internal.js
+++ b/lib/runtime/dart/_internal.js
@@ -1,11 +1,13 @@
-dart.library('dart/_internal', null, /* Imports */[
+loader.library('dart/_internal', null, /* Imports */[
+ "dart/dart_runtime",
+ "dart/dartx",
'dart/core',
'dart/collection'
], /* Lazy imports */[
'dart/math',
'dart/_interceptors',
'dart/_js_primitives'
-], function(exports, core, collection, math, _interceptors, _js_primitives) {
+], function(exports, dart, dartx, core, collection, math, _interceptors, _js_primitives) {
'use strict';
class EfficientLength extends core.Object {}
let ListIterable$ = dart.generic(function(E) {

Powered by Google App Engine
This is Rietveld 408576698