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

Unified Diff: dart/tests/language/skip_expression_test.dart

Issue 10829416: Update language tests to new getter syntax. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge
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
Index: dart/tests/language/skip_expression_test.dart
diff --git a/dart/tests/language/skip_expression_test.dart b/dart/tests/language/skip_expression_test.dart
index 6016e054508cbc31a6a878c11494840cb7f0ccda..bbadada0b34be521ffe0bf0de4aba7554e3934ef 100644
--- a/dart/tests/language/skip_expression_test.dart
+++ b/dart/tests/language/skip_expression_test.dart
@@ -3,15 +3,15 @@
// BSD-style license that can be found in the LICENSE file.
class OneArg<A> {
- OneArg<A> get foo() => new OneArg<A>();
- OneArg<A> get bar() {
+ OneArg<A> get foo => new OneArg<A>();
+ OneArg<A> get bar {
return new OneArg<A>();
}
}
class TwoArgs<A,B> {
- TwoArgs<A,B> get foo() => new TwoArgs<A,B>();
- TwoArgs<A,B> get bar() {
+ TwoArgs<A,B> get foo => new TwoArgs<A,B>();
+ TwoArgs<A,B> get bar {
return new TwoArgs<A,B>();
}
« no previous file with comments | « dart/tests/language/side_effect_throw_test.dart ('k') | dart/tests/language/static_implicit_closure_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698