| OLD | NEW |
| 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/names.dart' show Name, PublicName; |
| 10 import '../universe/call_structure.dart' show CallStructure; | 10 import '../universe/call_structure.dart' show CallStructure; |
| 11 import '../universe/selector.dart' show Selector; | 11 import '../universe/selector.dart' show Selector; |
| 12 | 12 |
| 13 /// [String]s commonly used. | 13 /// [String]s commonly used. |
| 14 class Identifiers { | 14 class Identifiers { |
| 15 /// The name of the call operator. | 15 /// The name of the call operator. |
| 16 static const String call = 'call'; | 16 static const String call = 'call'; |
| 17 | 17 |
| 18 /// The name of the current element property used on iterators in for-each | 18 /// The name of the current element property used on iterators in for-each |
| 19 /// loops. | 19 /// loops. |
| (...skipping 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 225 static final Uri dart__js_embedded_names = | 225 static final Uri dart__js_embedded_names = |
| 226 new Uri(scheme: 'dart', path: '_js_embedded_names'); | 226 new Uri(scheme: 'dart', path: '_js_embedded_names'); |
| 227 | 227 |
| 228 /// The URI for 'dart:_isolate_helper'. | 228 /// The URI for 'dart:_isolate_helper'. |
| 229 static final Uri dart__isolate_helper = | 229 static final Uri dart__isolate_helper = |
| 230 new Uri(scheme: 'dart', path: '_isolate_helper'); | 230 new Uri(scheme: 'dart', path: '_isolate_helper'); |
| 231 | 231 |
| 232 /// The URI for 'package:js'. | 232 /// The URI for 'package:js'. |
| 233 static final Uri package_js = new Uri(scheme: 'package', path: 'js/js.dart'); | 233 static final Uri package_js = new Uri(scheme: 'package', path: 'js/js.dart'); |
| 234 } | 234 } |
| OLD | NEW |