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

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

Issue 2686243004: Handler the last native annotations (Closed)
Patch Set: Cleanup. Created 3 years, 10 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: 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 715d8cf33916df996c3e2123f919f2d0532708e4..0d056eaeef330672cf6a3dd2e8bd0fc7fa733f2d 100644
--- a/pkg/compiler/lib/src/common/names.dart
+++ b/pkg/compiler/lib/src/common/names.dart
@@ -162,9 +162,20 @@ class Uris {
/// The URI for 'dart:html'.
static final Uri dart_html = new Uri(scheme: 'dart', path: 'html');
+ /// The URI for 'dart:html_common'.
+ static final Uri dart_html_common =
+ new Uri(scheme: 'dart', path: 'html_common');
+
+ /// The URI for 'dart:indexed_db'.
+ static final Uri dart_indexed_db =
+ new Uri(scheme: 'dart', path: 'indexed_db');
+
/// The URI for 'dart:isolate'.
static final Uri dart_isolate = new Uri(scheme: 'dart', path: 'isolate');
+ /// The URI for 'dart:math'.
+ static final Uri dart_math = new Uri(scheme: 'dart', path: 'math');
+
/// The URI for 'dart:mirrors'.
static final Uri dart_mirrors = new Uri(scheme: 'dart', path: 'mirrors');
@@ -175,6 +186,10 @@ class Uris {
static final Uri dart__native_typed_data =
new Uri(scheme: 'dart', path: '_native_typed_data');
+ /// The URI for 'dart:typed_data'.
+ static final Uri dart_typed_data =
+ new Uri(scheme: 'dart', path: 'typed_data');
+
/// The URI for 'dart:svg'.
static final Uri dart_svg = new Uri(scheme: 'dart', path: 'svg');
@@ -183,4 +198,7 @@ class Uris {
/// The URI for 'dart:web_gl'.
static final Uri dart_web_gl = new Uri(scheme: 'dart', path: 'web_gl');
+
+ /// The URI for 'dart:web_sql'.
+ static final Uri dart_web_sql = new Uri(scheme: 'dart', path: 'web_sql');
}
« no previous file with comments | « no previous file | pkg/compiler/lib/src/constants/evaluation.dart » ('j') | pkg/compiler/lib/src/kernel/element_adapter.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698