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

Unified Diff: pkg/kernel/testcases/reify/native_types_test.dart

Issue 2747113004: Run dartfmt on kernel package (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
« no previous file with comments | « pkg/kernel/testcases/input/void-methods.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/kernel/testcases/reify/native_types_test.dart
diff --git a/pkg/kernel/testcases/reify/native_types_test.dart b/pkg/kernel/testcases/reify/native_types_test.dart
index 08de3598e3457961e4517c35c033f8c08190c651..738b1514a4b59b7ad20e83657c1f9c8c21d791c7 100644
--- a/pkg/kernel/testcases/reify/native_types_test.dart
+++ b/pkg/kernel/testcases/reify/native_types_test.dart
@@ -30,9 +30,13 @@ main() {
expectTrue(true is! int);
// Test error and exception classes
- expectThrows(() => new C(), (e) => e is AbstractClassInstantiationError); /// 01: static type warning
+ expectThrows(() => new C(), (e) => e is AbstractClassInstantiationError);
- expectThrows(() => new D().foo(), (e) => e is NoSuchMethodError); /// 02: static type warning
+ /// 01: static type warning
+
+ expectThrows(() => new D().foo(), (e) => e is NoSuchMethodError);
+
+ /// 02: static type warning
expectThrows(() => foo, (e) => e is CyclicInitializationError);
« no previous file with comments | « pkg/kernel/testcases/input/void-methods.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698