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

Side by Side 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 unified diff | 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 »
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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 static final Uri dart_svg = new Uri(scheme: 'dart', path: 'svg'); 194 static final Uri dart_svg = new Uri(scheme: 'dart', path: 'svg');
195 195
196 /// The URI for 'dart:web_audio'. 196 /// The URI for 'dart:web_audio'.
197 static final Uri dart_web_audio = new Uri(scheme: 'dart', path: 'web_audio'); 197 static final Uri dart_web_audio = new Uri(scheme: 'dart', path: 'web_audio');
198 198
199 /// The URI for 'dart:web_gl'. 199 /// The URI for 'dart:web_gl'.
200 static final Uri dart_web_gl = new Uri(scheme: 'dart', path: 'web_gl'); 200 static final Uri dart_web_gl = new Uri(scheme: 'dart', path: 'web_gl');
201 201
202 /// The URI for 'dart:web_sql'. 202 /// The URI for 'dart:web_sql'.
203 static final Uri dart_web_sql = new Uri(scheme: 'dart', path: 'web_sql'); 203 static final Uri dart_web_sql = new Uri(scheme: 'dart', path: 'web_sql');
204
205 /// The URI for 'dart:_js_helper'.
206 static final Uri dart__js_helper =
207 new Uri(scheme: 'dart', path: '_js_helper');
208
209 /// The URI for 'dart:_interceptors'.
210 static final Uri dart__interceptors =
211 new Uri(scheme: 'dart', path: '_interceptors');
212
213 /// The URI for 'dart:_foreign_helper'.
214 static final Uri dart__foreign_helper =
215 new Uri(scheme: 'dart', path: '_foreign_helper');
216
217 /// The URI for 'dart:_js_mirrors'.
218 static final Uri dart__js_mirrors =
219 new Uri(scheme: 'dart', path: '_js_mirrors');
220
221 /// The URI for 'dart:_js_names'.
222 static final Uri dart__js_names = new Uri(scheme: 'dart', path: '_js_names');
223
224 /// The URI for 'dart:_js_embedded_names'.
225 static final Uri dart__js_embedded_names =
226 new Uri(scheme: 'dart', path: '_js_embedded_names');
227
228 /// The URI for 'dart:_isolate_helper'.
229 static final Uri dart__isolate_helper =
230 new Uri(scheme: 'dart', path: '_isolate_helper');
231
232 /// The URI for 'package:js'.
233 static final Uri package_js = new Uri(scheme: 'package', path: 'js/js.dart');
204 } 234 }
OLDNEW
« 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