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

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

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Address comments 2 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
« no previous file with comments | « lib/runtime/dart/collection.js ('k') | lib/runtime/dart/core.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/convert.js
diff --git a/lib/runtime/dart/convert.js b/lib/runtime/dart/convert.js
index 1c119dff1c854c751be9120627ec7ddf181bd672..385b5ca08ac998885cc5bb464e271741ebf44a17 100644
--- a/lib/runtime/dart/convert.js
+++ b/lib/runtime/dart/convert.js
@@ -1,12 +1,14 @@
-dart.library('dart/convert', null, /* Imports */[
+dart_library.library('dart/convert', null, /* Imports */[
+ "dart_runtime/dart",
'dart/core',
'dart/async',
'dart/typed_data',
'dart/_internal',
'dart/collection'
], /* Lazy imports */[
-], function(exports, core, async, typed_data, _internal, collection) {
+], function(exports, dart, core, async, typed_data, _internal, collection) {
'use strict';
+ let dartx = dart.dartx;
let Codec$ = dart.generic(function(S, T) {
class Codec extends core.Object {
Codec() {
« no previous file with comments | « lib/runtime/dart/collection.js ('k') | lib/runtime/dart/core.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698