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

Unified Diff: tests/compiler/dart2js_extra/lookup_map/generic_type_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: revert another multipart test Created 4 years, 3 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/compiler/dart2js_extra/lookup_map/generic_type_test.dart
diff --git a/tests/compiler/dart2js_extra/lookup_map/generic_type_test.dart b/tests/compiler/dart2js_extra/lookup_map/generic_type_test.dart
index 1a2fd6e3e03d1e558e5afb30435cc1ba879bb452..2befb517eeaf1013d7a5b61c1844b2c6c9d124bd 100644
--- a/tests/compiler/dart2js_extra/lookup_map/generic_type_test.dart
+++ b/tests/compiler/dart2js_extra/lookup_map/generic_type_test.dart
@@ -5,10 +5,15 @@
import 'package:lookup_map/lookup_map.dart';
import 'package:expect/expect.dart';
-class A{}
-class M<T>{ get type => T; }
+class A {}
+
+class M<T> {
+ get type => T;
+}
+
const map = const LookupMap(const [
- A, 'the-text-for-A',
+ A,
+ 'the-text-for-A',
]);
main() {

Powered by Google App Engine
This is Rietveld 408576698