| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, 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 /// Dart classes representing the souce spans and source files. | 5 /// Dart classes representing the souce spans and source files. |
| 6 library source_maps.span; | 6 library source_maps.span; |
| 7 | 7 |
| 8 import 'dart:math' show min, max; | 8 import 'dart:math' show min, max; |
| 9 | 9 |
| 10 import 'package:path/path.dart' as p; | 10 import 'package:path/path.dart' as p; |
| (...skipping 372 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 383 } | 383 } |
| 384 } | 384 } |
| 385 | 385 |
| 386 /// A [SpanException] that's also a [FormatException]. | 386 /// A [SpanException] that's also a [FormatException]. |
| 387 class SpanFormatException extends SpanException implements FormatException { | 387 class SpanFormatException extends SpanException implements FormatException { |
| 388 final source; | 388 final source; |
| 389 | 389 |
| 390 SpanFormatException(String message, Span span, [this.source]) | 390 SpanFormatException(String message, Span span, [this.source]) |
| 391 : super(message, span); | 391 : super(message, span); |
| 392 | 392 |
| 393 int get position => span == null ? null : span.start.offset; | 393 int get offset => span == null ? null : span.start.offset; |
| 394 } | 394 } |
| OLD | NEW |