| Index: editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart
|
| diff --git a/editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart b/editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart
|
| index 92adff79591670ef8f2aeba925e8745f3ca2db2b..446273fa7135120d2980b25889e56caf7d7b7aa2 100644
|
| --- a/editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart
|
| +++ b/editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart
|
| @@ -1,6 +1,8 @@
|
|
|
|
|
| class TestSource implements Source {
|
| + String _name;
|
| + TestSource([this._name = '/test.dart']);
|
| int get hashCode => 0;
|
| bool operator ==(Object object) {
|
| return object is TestSource;
|
| @@ -12,10 +14,10 @@ class TestSource implements Source {
|
| throw new UnsupportedOperationException();
|
| }
|
| String get fullName {
|
| - throw new UnsupportedOperationException();
|
| + return _name;
|
| }
|
| String get shortName {
|
| - throw new UnsupportedOperationException();
|
| + return _name;
|
| }
|
| String get encoding {
|
| throw new UnsupportedOperationException();
|
|
|