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

Unified Diff: pkg/compiler/lib/src/common/names.dart

Issue 2814453005: Merge CommonElements and BackendHelpers! (Closed)
Patch Set: comments and re-merge, take two Created 3 years, 8 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 | « pkg/compiler/lib/src/closure.dart ('k') | pkg/compiler/lib/src/common_elements.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/common/names.dart
diff --git a/pkg/compiler/lib/src/common/names.dart b/pkg/compiler/lib/src/common/names.dart
index 0d056eaeef330672cf6a3dd2e8bd0fc7fa733f2d..cd8cd5b3feed098f0585b8a5997300c5af15c5e0 100644
--- a/pkg/compiler/lib/src/common/names.dart
+++ b/pkg/compiler/lib/src/common/names.dart
@@ -201,4 +201,34 @@ class Uris {
/// The URI for 'dart:web_sql'.
static final Uri dart_web_sql = new Uri(scheme: 'dart', path: 'web_sql');
+
+ /// The URI for 'dart:_js_helper'.
+ static final Uri dart__js_helper =
+ new Uri(scheme: 'dart', path: '_js_helper');
+
+ /// The URI for 'dart:_interceptors'.
+ static final Uri dart__interceptors =
+ new Uri(scheme: 'dart', path: '_interceptors');
+
+ /// The URI for 'dart:_foreign_helper'.
+ static final Uri dart__foreign_helper =
+ new Uri(scheme: 'dart', path: '_foreign_helper');
+
+ /// The URI for 'dart:_js_mirrors'.
+ static final Uri dart__js_mirrors =
+ new Uri(scheme: 'dart', path: '_js_mirrors');
+
+ /// The URI for 'dart:_js_names'.
+ static final Uri dart__js_names = new Uri(scheme: 'dart', path: '_js_names');
+
+ /// The URI for 'dart:_js_embedded_names'.
+ static final Uri dart__js_embedded_names =
+ new Uri(scheme: 'dart', path: '_js_embedded_names');
+
+ /// The URI for 'dart:_isolate_helper'.
+ static final Uri dart__isolate_helper =
+ new Uri(scheme: 'dart', path: '_isolate_helper');
+
+ /// The URI for 'package:js'.
+ static final Uri package_js = new Uri(scheme: 'package', path: 'js/js.dart');
}
« no previous file with comments | « pkg/compiler/lib/src/closure.dart ('k') | pkg/compiler/lib/src/common_elements.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698