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

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

Issue 2481113003: Handle dart:html in kernel_impact (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/enqueue.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 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 164
165 /// The URI for 'dart:mirrors'. 165 /// The URI for 'dart:mirrors'.
166 static final Uri dart_mirrors = new Uri(scheme: 'dart', path: 'mirrors'); 166 static final Uri dart_mirrors = new Uri(scheme: 'dart', path: 'mirrors');
167 167
168 /// The URI for 'dart:_internal'. 168 /// The URI for 'dart:_internal'.
169 static final Uri dart__internal = new Uri(scheme: 'dart', path: '_internal'); 169 static final Uri dart__internal = new Uri(scheme: 'dart', path: '_internal');
170 170
171 /// The URI for 'dart:_native_typed_data'. 171 /// The URI for 'dart:_native_typed_data'.
172 static final Uri dart__native_typed_data = 172 static final Uri dart__native_typed_data =
173 new Uri(scheme: 'dart', path: '_native_typed_data'); 173 new Uri(scheme: 'dart', path: '_native_typed_data');
174
175 /// The URI for 'dart:svg'.
176 static final Uri dart_svg = new Uri(scheme: 'dart', path: 'svg');
177
178 /// The URI for 'dart:web_audio'.
179 static final Uri dart_web_audio = new Uri(scheme: 'dart', path: 'web_audio');
180
181 /// The URI for 'dart:web_gl'.
182 static final Uri dart_web_gl = new Uri(scheme: 'dart', path: 'web_gl');
174 } 183 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/enqueue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698