| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |