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

Unified Diff: lib/runtime/dart/_js_primitives.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/_js_primitives.js
diff --git a/lib/runtime/dart/_js_primitives.js b/lib/runtime/dart/_js_primitives.js
index b613d6c7b8c5ceedb184b3dcff63ac528a7b44c5..e2a93cf46f12e1cf58ea48b56df60a31cebd1e65 100644
--- a/lib/runtime/dart/_js_primitives.js
+++ b/lib/runtime/dart/_js_primitives.js
@@ -1,7 +1,9 @@
-dart.library('dart/_js_primitives', null, /* Imports */[
+loader.library('dart/_js_primitives', null, /* Imports */[
+ "dart/dart_runtime",
+ "dart/dartx",
'dart/core'
], /* Lazy imports */[
-], function(exports, core) {
+], function(exports, dart, dartx, core) {
'use strict';
function printString(string) {
if (typeof dartPrint == "function") {

Powered by Google App Engine
This is Rietveld 408576698