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

Side by Side Diff: tests/language/issue_1751477_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) 2014, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2014, 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 'issue_1751477_lib1.dart' deferred as lib1; 5 import 'issue_1751477_lib1.dart' deferred as lib1;
6 import 'issue_1751477_lib2.dart' deferred as lib2; 6 import 'issue_1751477_lib2.dart' deferred as lib2;
7 import 'issue_1751477_lib3.dart' deferred as lib3; 7 import 'issue_1751477_lib3.dart' deferred as lib3;
8 import 'issue_1751477_lib4.dart' deferred as lib4; 8 import 'issue_1751477_lib4.dart' deferred as lib4;
9 import 'issue_1751477_lib5.dart' deferred as lib5; 9 import 'issue_1751477_lib5.dart' deferred as lib5;
10 import 'issue_1751477_lib6.dart' deferred as lib6; 10 import 'issue_1751477_lib6.dart' deferred as lib6;
11 import 'issue_1751477_lib7.dart' deferred as lib7; 11 import 'issue_1751477_lib7.dart' deferred as lib7;
12 import 'issue_1751477_lib8.dart' deferred as lib8; 12 import 'issue_1751477_lib8.dart' deferred as lib8;
13 import 'issue_1751477_lib9.dart' deferred as lib9; 13 import 'issue_1751477_lib9.dart' deferred as lib9;
14 14
15 main() { 15 main() {
16 lib1.loadLibrary().then((_) { 16 lib1.loadLibrary().then((_) {
17 lib2.loadLibrary().then((_) { 17 lib2.loadLibrary().then((_) {
18 lib3.loadLibrary().then((_) { 18 lib3.loadLibrary().then((_) {
19 lib4.loadLibrary().then((_) { 19 lib4.loadLibrary().then((_) {
20 lib5.loadLibrary().then((_) { 20 lib5.loadLibrary().then((_) {
21 lib6.loadLibrary().then((_) { 21 lib6.loadLibrary().then((_) {
22 lib7.loadLibrary().then((_) { 22 lib7.loadLibrary().then((_) {
23 lib8.loadLibrary().then((_) { 23 lib8.loadLibrary().then((_) {
24 lib9.loadLibrary().then((_) { 24 lib9.loadLibrary().then((_) {});
25 });
26 }); 25 });
27 }); 26 });
28 }); 27 });
29 }); 28 });
30 }); 29 });
31 }); 30 });
32 }); 31 });
33 }); 32 });
34 } 33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698