Files
sdk/tests/language_2/async_nested/async_nested39_test.dart
T
Robert Nystrom fc1b1ecc71 Move files under language_2 into subdirectories.
Change-Id: Idbcc965a27e9ffeedf5e0a1068b019de4193070f
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/127745
Commit-Queue: Bob Nystrom <rnystrom@google.com>
Reviewed-by: Alexander Thomas <athom@google.com>
2019-12-11 19:18:00 +00:00

44 lines
1.1 KiB
Dart

// Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// This has been automatically generated by script
// "async_nested_test_generator.dart".
import 'dart:async';
void main() async {
String expected = "1 2 3 4 5 6 7 8 9";
Node node = await new Future.value(new Node('1', [
new Node('2', []),
await new Future.value(new Node('3', [
new Node('4', []),
new Node('5', []),
await new Future.value(new Node('6', [
new Node('7', []),
])),
])),
new Node('8', []),
await new Future.value(new Node('9', [])),
]));
String actual = node.toSimpleString();
print(actual);
if (actual != expected) {
throw "Expected '$expected' but got '$actual'";
}
}
class Node {
final List<Node> nested;
final String name;
Node(this.name, [this.nested]) {}
String toString() => '<$name:[${nested?.join(', ')}]>';
toSimpleString() {
var tmp = nested?.map((child) => child.toSimpleString());
return '$name ${tmp?.join(' ')}'.trim();
}
}