Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: editor/util/plugins/com.google.dart.java2dart/resources/test_support_include.dart

Issue 428303004: Breaking changes in 'analyzer' package. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Rename Source.resolveRelative to resolveRelativeUri, soften version constraints Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 2
3 class TestSource implements Source { 3 class TestSource implements Source {
4 String _name; 4 String _name;
5 TestSource([this._name = '/test.dart']); 5 TestSource([this._name = '/test.dart']);
6 int get hashCode => 0; 6 int get hashCode => 0;
7 bool operator ==(Object object) { 7 bool operator ==(Object object) {
8 return object is TestSource; 8 return object is TestSource;
9 } 9 }
10 AnalysisContext get context { 10 AnalysisContext get context {
(...skipping 14 matching lines...) Expand all
25 int get modificationStamp { 25 int get modificationStamp {
26 throw new UnsupportedOperationException(); 26 throw new UnsupportedOperationException();
27 } 27 }
28 bool exists() => true; 28 bool exists() => true;
29 bool get isInSystemLibrary { 29 bool get isInSystemLibrary {
30 throw new UnsupportedOperationException(); 30 throw new UnsupportedOperationException();
31 } 31 }
32 Source resolve(String uri) { 32 Source resolve(String uri) {
33 throw new UnsupportedOperationException(); 33 throw new UnsupportedOperationException();
34 } 34 }
35 Source resolveRelative(Uri uri) { 35 Uri resolveRelative(Uri uri) {
36 throw new UnsupportedOperationException(); 36 throw new UnsupportedOperationException();
37 } 37 }
38 UriKind get uriKind { 38 UriKind get uriKind {
39 throw new UnsupportedOperationException(); 39 throw new UnsupportedOperationException();
40 } 40 }
41 Uri get uri {
42 throw new UnsupportedOperationException();
43 }
41 TimestampedData<String> get contents { 44 TimestampedData<String> get contents {
42 throw new UnsupportedOperationException(); 45 throw new UnsupportedOperationException();
43 } 46 }
44 } 47 }
OLDNEW
« no previous file with comments | « no previous file | editor/util/plugins/com.google.dart.java2dart/src/com/google/dart/java2dart/engine/MainEngine.java » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698