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

Unified Diff: compiler/javatests/com/google/dart/compiler/type/covariant_class.dart

Issue 10872048: Convert getter and catch syntax in tests; fix resulting bugs (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « compiler/javatests/com/google/dart/compiler/resolver/StaticSuperGetterNegativeTest.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: compiler/javatests/com/google/dart/compiler/type/covariant_class.dart
===================================================================
--- compiler/javatests/com/google/dart/compiler/type/covariant_class.dart (revision 11229)
+++ compiler/javatests/com/google/dart/compiler/type/covariant_class.dart (working copy)
@@ -16,24 +16,24 @@
class Super {
A field;
- A get accessor() { return null; }
+ A get accessor { return null; }
void set accessor(A newValue) { }
A method() { return null; }
var untypedField;
- get untypedAccessor() { return null; }
+ get untypedAccessor { return null; }
set untypedAccessor(newValue) { }
untypedMethod() { return null; }
}
class Sub extends Super {
B field;
- B get accessor() { return null; }
+ B get accessor { return null; }
void set accessor(B newValue) { }
B method() { return null; }
B untypedField;
- B get untypedAccessor() { return null; }
+ B get untypedAccessor { return null; }
set untypedAccessor(B newValue) { }
B untypedMethod() { return null; }
« no previous file with comments | « compiler/javatests/com/google/dart/compiler/resolver/StaticSuperGetterNegativeTest.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698