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

Side by Side Diff: tests/language/issue_1751477.dart

Issue 732393002: Enable issue tests that appear to be incorrectly named. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
« no previous file with comments | « tests/language/issue21159_test.dart ('k') | tests/language/issue_1751477_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // BSD-style license that can be found in the LICENSE file.
4
5 import 'issue_1751477_lib1.dart' deferred as lib1;
6 import 'issue_1751477_lib2.dart' deferred as lib2;
7 import 'issue_1751477_lib3.dart' deferred as lib3;
8 import 'issue_1751477_lib4.dart' deferred as lib4;
9 import 'issue_1751477_lib5.dart' deferred as lib5;
10 import 'issue_1751477_lib6.dart' deferred as lib6;
11 import 'issue_1751477_lib7.dart' deferred as lib7;
12 import 'issue_1751477_lib8.dart' deferred as lib8;
13 import 'issue_1751477_lib9.dart' deferred as lib9;
14
15 main() {
16 lib1.loadLibrary().then((_) {
17 lib2.loadLibrary().then((_) {
18 lib3.loadLibrary().then((_) {
19 lib4.loadLibrary().then((_) {
20 lib5.loadLibrary().then((_) {
21 lib6.loadLibrary().then((_) {
22 lib7.loadLibrary().then((_) {
23 lib8.loadLibrary().then((_) {
24 lib9.loadLibrary().then((_) {
25 });
26 });
27 });
28 });
29 });
30 });
31 });
32 });
33 });
34 }
OLDNEW
« no previous file with comments | « tests/language/issue21159_test.dart ('k') | tests/language/issue_1751477_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698