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 /// Holds a couple utility functions used at various places in the system. | 5 /// Holds a couple utility functions used at various places in the system. |
6 library dev_compiler.src.utils; | 6 library dev_compiler.src.utils; |
7 | 7 |
8 import 'dart:io'; | 8 import 'dart:io'; |
9 | 9 |
10 import 'package:path/path.dart' as path; | 10 import 'package:path/path.dart' as path; |
(...skipping 415 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
426 | 426 |
427 if (match(s)) return type; | 427 if (match(s)) return type; |
428 return findSupertype(s, match); | 428 return findSupertype(s, match); |
429 } | 429 } |
430 | 430 |
431 SourceSpanWithContext createSpan( | 431 SourceSpanWithContext createSpan( |
432 AnalysisContext context, CompilationUnit unit, int start, int end, | 432 AnalysisContext context, CompilationUnit unit, int start, int end, |
433 [Source source]) { | 433 [Source source]) { |
434 if (source == null) source = unit.element.source; | 434 if (source == null) source = unit.element.source; |
435 var content = context.getContents(source).data; | 435 var content = context.getContents(source).data; |
| 436 return createSpanHelper(unit, start, end, source, content); |
| 437 } |
| 438 |
| 439 SourceSpanWithContext createSpanHelper( |
| 440 CompilationUnit unit, int start, int end, Source source, String content) { |
436 var startLoc = locationForOffset(unit, source.uri, start); | 441 var startLoc = locationForOffset(unit, source.uri, start); |
437 var endLoc = locationForOffset(unit, source.uri, end); | 442 var endLoc = locationForOffset(unit, source.uri, end); |
438 | 443 |
439 var lineStart = startLoc.offset - startLoc.column; | 444 var lineStart = startLoc.offset - startLoc.column; |
440 // Find the end of the line. This is not exposed directly on LineInfo, but | 445 // Find the end of the line. This is not exposed directly on LineInfo, but |
441 // we can find it pretty easily. | 446 // we can find it pretty easily. |
442 // TODO(jmesserly): for now we do the simple linear scan. Ideally we can get | 447 // TODO(jmesserly): for now we do the simple linear scan. Ideally we can get |
443 // some help from the LineInfo API. | 448 // some help from the LineInfo API. |
444 var lineInfo = unit.lineInfo; | 449 var lineInfo = unit.lineInfo; |
445 int lineEnd = endLoc.offset; | 450 int lineEnd = endLoc.offset; |
446 int unitEnd = unit.endToken.end; | 451 int unitEnd = unit.endToken.end; |
447 int lineNum = lineInfo.getLocation(lineEnd).lineNumber; | 452 int lineNum = lineInfo.getLocation(lineEnd).lineNumber; |
448 while (lineEnd < unitEnd && | 453 while (lineEnd < unitEnd && |
449 lineInfo.getLocation(++lineEnd).lineNumber == lineNum); | 454 lineInfo.getLocation(++lineEnd).lineNumber == lineNum); |
450 | 455 |
451 var text = content.substring(start, end); | 456 var text = content.substring(start, end); |
452 var lineText = content.substring(lineStart, lineEnd); | 457 var lineText = content.substring(lineStart, lineEnd); |
453 return new SourceSpanWithContext(startLoc, endLoc, text, lineText); | 458 return new SourceSpanWithContext(startLoc, endLoc, text, lineText); |
454 } | 459 } |
OLD | NEW |