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

Side by Side Diff: pkg/dartdoc/mirrors/dart2js_mirror.dart

Issue 10827394: Change line endings from Windows to Unix (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rebased Created 8 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | tests/compiler/dart2js/begin_end_token_test.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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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('mirrors.dart2js'); 5 #library('mirrors.dart2js');
6 6
7 #import('../../../lib/compiler/compiler.dart', prefix: 'diagnostics'); 7 #import('../../../lib/compiler/compiler.dart', prefix: 'diagnostics');
8 #import('../../../lib/compiler/implementation/elements/elements.dart'); 8 #import('../../../lib/compiler/implementation/elements/elements.dart');
9 #import('../../../lib/compiler/implementation/apiimpl.dart', prefix: 'api'); 9 #import('../../../lib/compiler/implementation/apiimpl.dart', prefix: 'api');
10 #import('../../../lib/compiler/implementation/scanner/scannerlib.dart'); 10 #import('../../../lib/compiler/implementation/scanner/scannerlib.dart');
(...skipping 1350 matching lines...) Expand 10 before | Expand all | Expand 10 after
1361 if (node !== null) { 1361 if (node !== null) {
1362 var span = system.compiler.spanFromNode(node, script.uri); 1362 var span = system.compiler.spanFromNode(node, script.uri);
1363 return new Dart2JsLocation(script, span); 1363 return new Dart2JsLocation(script, span);
1364 } else { 1364 } else {
1365 var span = system.compiler.spanFromElement(_variable); 1365 var span = system.compiler.spanFromElement(_variable);
1366 return new Dart2JsLocation(script, span); 1366 return new Dart2JsLocation(script, span);
1367 } 1367 }
1368 } 1368 }
1369 } 1369 }
1370 1370
OLDNEW
« no previous file with comments | « no previous file | tests/compiler/dart2js/begin_end_token_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698