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

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

Issue 1486473002: Convert dart_utils.js to input_sdk/lib/_internal/utils.dart (#310) (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Rebased Created 5 years 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/_rtti.js ('k') | lib/runtime/dart/_types.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/runtime/dart/_runtime.js
diff --git a/lib/runtime/dart/_runtime.js b/lib/runtime/dart/_runtime.js
index 32172bcdb8b6633e75d4ea2ac08bff2df85fe480..506049d5e5d8deb63a95577feb2df4c2553fbf77 100644
--- a/lib/runtime/dart/_runtime.js
+++ b/lib/runtime/dart/_runtime.js
@@ -3,6 +3,7 @@
// BSD-style license that can be found in the LICENSE file.
dart_library.library('dart/_runtime', null, /* Imports */[
+ 'dart/_utils',
'dart/_classes',
'dart/_errors',
'dart/_generators',
@@ -11,7 +12,7 @@ dart_library.library('dart/_runtime', null, /* Imports */[
'dart/_types',
], /* Lazy Imports */[
'dart/_js_helper'
-], function(exports, classes, errors, generators, operations, rtti, types,
+], function(exports, dart_utils, classes, errors, generators, operations, rtti, types,
_js_helper) {
'use strict';
@@ -64,7 +65,7 @@ dart_library.library('dart/_runtime', null, /* Imports */[
]);
// From dart_utils
- exportFrom(dart_utils, ['copyProperties', 'export']);
+ exportFrom(dart_utils, ['copyProperties', 'export_']);
// Renames
exports.defineLazyClass = _export(dart_utils.defineLazy);
exports.defineLazyProperties = _export(dart_utils.defineLazy);
« no previous file with comments | « lib/runtime/dart/_rtti.js ('k') | lib/runtime/dart/_types.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698