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

Unified Diff: lib/runtime/dart/collection.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/collection.js
diff --git a/lib/runtime/dart/collection.js b/lib/runtime/dart/collection.js
index 18b09824737d43a3b7fee8b866704bfd00f6ea11..00df3c879e5e0bdecac4790d8805f3dd6421c270 100644
--- a/lib/runtime/dart/collection.js
+++ b/lib/runtime/dart/collection.js
@@ -1,10 +1,12 @@
-dart.library('dart/collection', null, /* Imports */[
+loader.library('dart/collection', null, /* Imports */[
+ "dart/dart_runtime",
+ "dart/dartx",
'dart/core'
], /* Lazy imports */[
'dart/_internal',
'dart/_js_helper',
'dart/math'
-], function(exports, core, _internal, _js_helper, math) {
+], function(exports, dart, dartx, core, _internal, _js_helper, math) {
'use strict';
let _source = Symbol('_source');
let UnmodifiableListView$ = dart.generic(function(E) {

Powered by Google App Engine
This is Rietveld 408576698