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

Side by Side Diff: tests/language_strong/regress_22438_test.dart

Issue 2771453003: Format all tests. (Closed)
Patch Set: Format files Created 3 years, 8 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 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 import "dart:async"; 5 import "dart:async";
6 import "package:expect/expect.dart"; 6 import "package:expect/expect.dart";
7 7
8 main() async { 8 main() async {
9 var error = "no error"; 9 var error = "no error";
10 try { 10 try {
11 try { 11 try {
12 await new Future.error("error"); 12 await new Future.error("error");
13 } on MissingType catch(e) { 13 } on MissingType catch (e) {}
14 }
15 } catch (e) { 14 } catch (e) {
16 error = e; 15 error = e;
17 } 16 }
18 Expect.isTrue(error is TypeError); 17 Expect.isTrue(error is TypeError);
19 } 18 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698