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

Side by Side Diff: tests/compiler/dart2js_extra/23264_test.dart

Issue 2345083003: dart2js: run dartfmt on tests (Closed)
Patch Set: 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 unified diff | Download patch
OLDNEW
1 import 'package:expect/expect.dart'; 1 import 'package:expect/expect.dart';
2 2
3 class A { A(ignore); } 3 class A {
4 A(ignore);
5 }
6
4 main() => Expect.throws(() => A(const [])); // oops, `new` is missing! 7 main() => Expect.throws(() => A(const [])); // oops, `new` is missing!
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698