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

Side by Side Diff: pkg/compiler/lib/src/common/names.dart

Issue 2466353002: Revert "More functionality in kernel_impact." and "Compute NativeBehavior for foreign functions." (Closed)
Patch Set: Created 4 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « no previous file | pkg/compiler/lib/src/diagnostics/messages.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 /// Library containing identifier, names, and selectors commonly used through 5 /// Library containing identifier, names, and selectors commonly used through
6 /// the compiler. 6 /// the compiler.
7 library dart2js.common.names; 7 library dart2js.common.names;
8 8
9 import '../elements/elements.dart' show Name, PublicName; 9 import '../elements/elements.dart' show Name, PublicName;
10 import '../universe/call_structure.dart' show CallStructure; 10 import '../universe/call_structure.dart' show CallStructure;
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after
145 index, 145 index,
146 runtimeType_ 146 runtimeType_
147 ]; 147 ];
148 } 148 }
149 149
150 /// [Uri]s commonly used. 150 /// [Uri]s commonly used.
151 class Uris { 151 class Uris {
152 /// The URI for 'dart:async'. 152 /// The URI for 'dart:async'.
153 static final Uri dart_async = new Uri(scheme: 'dart', path: 'async'); 153 static final Uri dart_async = new Uri(scheme: 'dart', path: 'async');
154 154
155 /// The URI for 'dart:collection'.
156 static final Uri dart_collection =
157 new Uri(scheme: 'dart', path: 'collection');
158
159 /// The URI for 'dart:core'. 155 /// The URI for 'dart:core'.
160 static final Uri dart_core = new Uri(scheme: 'dart', path: 'core'); 156 static final Uri dart_core = new Uri(scheme: 'dart', path: 'core');
161 157
162 /// The URI for 'dart:html'. 158 /// The URI for 'dart:html'.
163 static final Uri dart_html = new Uri(scheme: 'dart', path: 'html'); 159 static final Uri dart_html = new Uri(scheme: 'dart', path: 'html');
164 160
165 /// The URI for 'dart:mirrors'. 161 /// The URI for 'dart:mirrors'.
166 static final Uri dart_mirrors = new Uri(scheme: 'dart', path: 'mirrors'); 162 static final Uri dart_mirrors = new Uri(scheme: 'dart', path: 'mirrors');
167 163
168 /// The URI for 'dart:_internal'. 164 /// The URI for 'dart:_internal'.
169 static final Uri dart__internal = new Uri(scheme: 'dart', path: '_internal'); 165 static final Uri dart__internal = new Uri(scheme: 'dart', path: '_internal');
170 166
171 /// The URI for 'dart:_native_typed_data'. 167 /// The URI for 'dart:_native_typed_data'.
172 static final Uri dart__native_typed_data = 168 static final Uri dart__native_typed_data =
173 new Uri(scheme: 'dart', path: '_native_typed_data'); 169 new Uri(scheme: 'dart', path: '_native_typed_data');
174 } 170 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/diagnostics/messages.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698