| commit | eb79592cedbff4734c3b218461b6a115d0a30fe8 | [log] [tgz] |
|---|---|---|
| author | lrn@google.com <lrn@google.com> | Mon Jul 14 09:24:11 2014 +0000 |
| committer | lrn@google.com <lrn@google.com> | Mon Jul 14 09:24:11 2014 +0000 |
| tree | 804bf1fd760f8d857ee6b11cf27e378aa8246780 | |
| parent | 3fdc73687f5602b708e830cf516f0d9ab533a29d [diff] |
Fix class implementing FormatException getting warnings. Update mirrors-used-test count. R=kustermann@google.com Review URL: https://codereview.chromium.org//392563003 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart/pkg/source_maps@38182 260f80e4-7a28-3924-810f-c04153c831b5
diff --git a/pkgs/source_maps/lib/span.dart b/pkgs/source_maps/lib/span.dart index 600506e..771e9e0 100644 --- a/pkgs/source_maps/lib/span.dart +++ b/pkgs/source_maps/lib/span.dart
@@ -387,4 +387,7 @@ class SpanFormatException extends SpanException implements FormatException { SpanFormatException(String message, Span span) : super(message, span); + + get source => null; + int get position => null; }
diff --git a/pkgs/source_maps/pubspec.yaml b/pkgs/source_maps/pubspec.yaml index 9dee45f..e6e749c 100644 --- a/pkgs/source_maps/pubspec.yaml +++ b/pkgs/source_maps/pubspec.yaml
@@ -7,7 +7,7 @@ # # When the minor version is upgraded, you *must* update that version constraint # in pub to stay in sync with this. -version: 0.9.2+3 +version: 0.9.2+4-dev author: Dart Team <misc@dartlang.org> description: Library to programmatically manipulate source map files. homepage: http://www.dartlang.org