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

Unified Diff: pkg/dev_compiler/test/codegen/lib/html/custom_elements_23127_test.dart

Issue 2413073002: Start cleaning up the HTML tests. (Closed)
Patch Set: Unfork expect.dart. Created 4 years, 2 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: pkg/dev_compiler/test/codegen/lib/html/custom_elements_23127_test.dart
diff --git a/pkg/dev_compiler/test/codegen/lib/html/custom_elements_23127_test.dart b/pkg/dev_compiler/test/codegen/lib/html/custom_elements_23127_test.dart
index 6386690e2e0eb5c5d1aafcc552e590a7ba458c00..7b0f5764e272c36ed14410b3e97cf531064f8cbd 100644
--- a/pkg/dev_compiler/test/codegen/lib/html/custom_elements_23127_test.dart
+++ b/pkg/dev_compiler/test/codegen/lib/html/custom_elements_23127_test.dart
@@ -56,25 +56,25 @@ abstract class B2T<T> extends HtmlElement {
class C1 extends B1 {
int z;
C1.created() : super.created();
- action() => z = 3;
+ action() { z = 3; }
}
class C1T extends B1T {
int z;
C1T.created() : super.created();
- action() => z = 3;
+ action() { z = 3; }
}
class C2 extends B2 {
int z;
C2.created() : super.created(20);
- action() => z = 3;
+ action() { z = 3; }
}
class C2T extends B2T {
int z;
C2T.created() : super.created(20);
- action() => z = 3;
+ action() { z = 3; }
}

Powered by Google App Engine
This is Rietveld 408576698