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

Unified Diff: lib/runtime/dartx.js

Issue 1182653002: Refactor runtime into libraries, better type reps (Closed) Base URL: git@github.com:dart-lang/dev_compiler.git@master
Patch Set: Add missing file 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/dartx.js
diff --git a/test/codegen/dir/html_input_c.dart b/lib/runtime/dartx.js
similarity index 53%
copy from test/codegen/dir/html_input_c.dart
copy to lib/runtime/dartx.js
index 32d604deef22ffc3aa9af93ccd95a8440bae0794..845105d573e1e4611e0a84ae90c6ec7a7e2f587b 100644
--- a/test/codegen/dir/html_input_c.dart
+++ b/lib/runtime/dartx.js
@@ -2,8 +2,12 @@
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
-library html_input_c;
+/* This library defines the namespace for Dart extension method symbols.
+ */
-import 'html_input_e.dart';
+loader.library('dart/dartx', null, /* Imports */[
Jennifer Messerly 2015/06/12 17:32:25 not sure this is worth its own file.
Leaf 2015/06/12 19:52:14 I moved this to be a property on dart (dart.dartx)
+], /* Lazy Imports */[
+], function(exports) {
+ 'use strict';
-int y = 3 + w;
+})

Powered by Google App Engine
This is Rietveld 408576698