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

Unified Diff: tests/language_strong/type_promotion_logical_and_test.dart

Issue 2774783002: Re-land "Format all multitests" (Closed)
Patch Set: Created 3 years, 9 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: tests/language_strong/type_promotion_logical_and_test.dart
diff --git a/tests/language_strong/type_promotion_logical_and_test.dart b/tests/language_strong/type_promotion_logical_and_test.dart
index eaf29150218ca9d696fa6be827e6f8d98dbfd046..155af28c45094168a4f50eb9c0ae7a2d7c48eeb8 100644
--- a/tests/language_strong/type_promotion_logical_and_test.dart
+++ b/tests/language_strong/type_promotion_logical_and_test.dart
@@ -7,15 +7,19 @@
class A {
var a = true;
}
+
class B extends A {
var b = true;
}
+
class C extends B {
var c = true;
}
+
class D extends A {
var d = true;
}
+
class E implements C, D {
var a = true;
var b = true;
« no previous file with comments | « tests/language_strong/type_promotion_local_test.dart ('k') | tests/language_strong/type_promotion_more_specific_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698