| OLD | NEW |
| 1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2014, 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 // This code was auto-generated, is not intended to be edited, and is subject to | 5 // This code was auto-generated, is not intended to be edited, and is subject to |
| 6 // significant change. Please see the README file for more information. | 6 // significant change. Please see the README file for more information. |
| 7 | 7 |
| 8 library engine.test_support; | 8 library engine.test_support; |
| 9 | 9 |
| 10 import 'dart:collection'; | 10 import 'dart:collection'; |
| (...skipping 576 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 587 } | 587 } |
| 588 String get shortName { | 588 String get shortName { |
| 589 return _name; | 589 return _name; |
| 590 } | 590 } |
| 591 Uri get uri { | 591 Uri get uri { |
| 592 throw new UnsupportedOperationException(); | 592 throw new UnsupportedOperationException(); |
| 593 } | 593 } |
| 594 UriKind get uriKind { | 594 UriKind get uriKind { |
| 595 throw new UnsupportedOperationException(); | 595 throw new UnsupportedOperationException(); |
| 596 } | 596 } |
| 597 @override |
| 598 String toString() => '$_name'; |
| 597 bool operator ==(Object other) { | 599 bool operator ==(Object other) { |
| 598 if (other is TestSource) { | 600 if (other is TestSource) { |
| 599 return other._name == _name; | 601 return other._name == _name; |
| 600 } | 602 } |
| 601 return false; | 603 return false; |
| 602 } | 604 } |
| 603 bool exists() => exists2; | 605 bool exists() => exists2; |
| 604 void getContentsToReceiver(Source_ContentReceiver receiver) { | 606 void getContentsToReceiver(Source_ContentReceiver receiver) { |
| 605 throw new UnsupportedOperationException(); | 607 throw new UnsupportedOperationException(); |
| 606 } | 608 } |
| (...skipping 30 matching lines...) Expand all Loading... |
| 637 if (other is TestSource) { | 639 if (other is TestSource) { |
| 638 return other.uri == uri; | 640 return other.uri == uri; |
| 639 } | 641 } |
| 640 return false; | 642 return false; |
| 641 } | 643 } |
| 642 | 644 |
| 643 Uri resolveRelativeUri(Uri uri) { | 645 Uri resolveRelativeUri(Uri uri) { |
| 644 return this.uri.resolveUri(uri); | 646 return this.uri.resolveUri(uri); |
| 645 } | 647 } |
| 646 } | 648 } |
| OLD | NEW |