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

Side by Side Diff: pkg/compiler/lib/src/io/start_end_information.dart

Issue 1284593003: Remove dart2jslib.dart (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Created 5 years, 4 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/io/source_information.dart ('k') | pkg/compiler/lib/src/js/js.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 /// Source information system that maps spans of Dart AST nodes to spans of 5 /// Source information system that maps spans of Dart AST nodes to spans of
6 /// JavaScript nodes. 6 /// JavaScript nodes.
7 7
8 library dart2js.source_information.start_end; 8 library dart2js.source_information.start_end;
9 9
10 import '../dart2jslib.dart' show 10 import '../diagnostics/source_span.dart' show
11 SourceSpan; 11 SourceSpan;
12 import '../elements/elements.dart' show 12 import '../elements/elements.dart' show
13 AstElement, 13 AstElement,
14 LocalElement; 14 LocalElement;
15 import '../js/js.dart' as js; 15 import '../js/js.dart' as js;
16 import '../js/js_source_mapping.dart'; 16 import '../js/js_source_mapping.dart';
17 import '../messages.dart' show 17 import '../messages.dart' show
18 MessageKind, 18 MessageKind,
19 MessageTemplate; 19 MessageTemplate;
20 import '../scanner/scannerlib.dart' show Token; 20 import '../scanner/scannerlib.dart' show Token;
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 227
228 @override 228 @override
229 SourceInformationBuilder forContext( 229 SourceInformationBuilder forContext(
230 AstElement element, {SourceInformation sourceInformation}) { 230 AstElement element, {SourceInformation sourceInformation}) {
231 return new StartEndSourceInformationBuilder(element); 231 return new StartEndSourceInformationBuilder(element);
232 } 232 }
233 } 233 }
234 234
235 235
236 236
OLDNEW
« no previous file with comments | « pkg/compiler/lib/src/io/source_information.dart ('k') | pkg/compiler/lib/src/js/js.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698