| 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/elements.dart' show Name, PublicName; |
| 10 import '../universe/call_structure.dart' show CallStructure; | 10 import '../universe/call_structure.dart' show CallStructure; |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 /// The URI for 'dart:collection'. | 155 /// The URI for 'dart:collection'. |
| 156 static final Uri dart_collection = | 156 static final Uri dart_collection = |
| 157 new Uri(scheme: 'dart', path: 'collection'); | 157 new Uri(scheme: 'dart', path: 'collection'); |
| 158 | 158 |
| 159 /// The URI for 'dart:core'. | 159 /// The URI for 'dart:core'. |
| 160 static final Uri dart_core = new Uri(scheme: 'dart', path: 'core'); | 160 static final Uri dart_core = new Uri(scheme: 'dart', path: 'core'); |
| 161 | 161 |
| 162 /// The URI for 'dart:html'. | 162 /// The URI for 'dart:html'. |
| 163 static final Uri dart_html = new Uri(scheme: 'dart', path: 'html'); | 163 static final Uri dart_html = new Uri(scheme: 'dart', path: 'html'); |
| 164 | 164 |
| 165 /// The URI for 'dart:isolate'. |
| 166 static final Uri dart_isolate = new Uri(scheme: 'dart', path: 'isolate'); |
| 167 |
| 165 /// The URI for 'dart:mirrors'. | 168 /// The URI for 'dart:mirrors'. |
| 166 static final Uri dart_mirrors = new Uri(scheme: 'dart', path: 'mirrors'); | 169 static final Uri dart_mirrors = new Uri(scheme: 'dart', path: 'mirrors'); |
| 167 | 170 |
| 168 /// The URI for 'dart:_internal'. | 171 /// The URI for 'dart:_internal'. |
| 169 static final Uri dart__internal = new Uri(scheme: 'dart', path: '_internal'); | 172 static final Uri dart__internal = new Uri(scheme: 'dart', path: '_internal'); |
| 170 | 173 |
| 171 /// The URI for 'dart:_native_typed_data'. | 174 /// The URI for 'dart:_native_typed_data'. |
| 172 static final Uri dart__native_typed_data = | 175 static final Uri dart__native_typed_data = |
| 173 new Uri(scheme: 'dart', path: '_native_typed_data'); | 176 new Uri(scheme: 'dart', path: '_native_typed_data'); |
| 174 | 177 |
| 175 /// The URI for 'dart:svg'. | 178 /// The URI for 'dart:svg'. |
| 176 static final Uri dart_svg = new Uri(scheme: 'dart', path: 'svg'); | 179 static final Uri dart_svg = new Uri(scheme: 'dart', path: 'svg'); |
| 177 | 180 |
| 178 /// The URI for 'dart:web_audio'. | 181 /// The URI for 'dart:web_audio'. |
| 179 static final Uri dart_web_audio = new Uri(scheme: 'dart', path: 'web_audio'); | 182 static final Uri dart_web_audio = new Uri(scheme: 'dart', path: 'web_audio'); |
| 180 | 183 |
| 181 /// The URI for 'dart:web_gl'. | 184 /// The URI for 'dart:web_gl'. |
| 182 static final Uri dart_web_gl = new Uri(scheme: 'dart', path: 'web_gl'); | 185 static final Uri dart_web_gl = new Uri(scheme: 'dart', path: 'web_gl'); |
| 183 } | 186 } |
| OLD | NEW |