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

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

Issue 14308011: New Analysis Engine snapshot. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 8 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
OLDNEW
1 1
2 2
3 class TestSource implements Source { 3 class TestSource implements Source {
4 int get hashCode => 0;
4 bool operator ==(Object object) { 5 bool operator ==(Object object) {
5 return this == object; 6 return object is TestSource;
6 } 7 }
7 AnalysisContext get context { 8 AnalysisContext get context {
8 throw new UnsupportedOperationException(); 9 throw new UnsupportedOperationException();
9 } 10 }
10 void getContents(Source_ContentReceiver receiver) { 11 void getContents(Source_ContentReceiver receiver) {
11 throw new UnsupportedOperationException(); 12 throw new UnsupportedOperationException();
12 } 13 }
13 String get fullName { 14 String get fullName {
14 throw new UnsupportedOperationException(); 15 throw new UnsupportedOperationException();
15 } 16 }
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 return trampoline(target, arguments[0], arguments[1]); 55 return trampoline(target, arguments[0], arguments[1]);
55 case 3: 56 case 3:
56 return trampoline(target, arguments[0], arguments[1], arguments[2]); 57 return trampoline(target, arguments[0], arguments[1], arguments[2]);
57 case 4: 58 case 4:
58 return trampoline(target, arguments[0], arguments[1], arguments[2], argu ments[3]); 59 return trampoline(target, arguments[0], arguments[1], arguments[2], argu ments[3]);
59 default: 60 default:
60 throw new IllegalArgumentException("Not implemented for > 4 arguments"); 61 throw new IllegalArgumentException("Not implemented for > 4 arguments");
61 } 62 }
62 } 63 }
63 } 64 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698