mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 09:43:08 +00:00
86f8e3438a
Change-Id: I16f1be4e17fa87aa94b294f281dfe14ea0129eb3 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/134904 Auto-Submit: Bob Nystrom <rnystrom@google.com> Reviewed-by: Erik Ernst <eernst@google.com> Commit-Queue: Bob Nystrom <rnystrom@google.com>
52 lines
1.4 KiB
Dart
52 lines
1.4 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 10 11 12 13 14";
|
|
Node node = new Node('1', [
|
|
new Node('2', []),
|
|
await new Future.value(new Node('3', [])),
|
|
await new Future.value(new Node('4', [
|
|
new Node('5', [
|
|
await new Future.value(new Node('6', [
|
|
new Node('7', [
|
|
new Node('8', [
|
|
new Node('9', []),
|
|
new Node('10', []),
|
|
await new Future.value(new Node('11', [])),
|
|
]),
|
|
await new Future.value(new Node('12', [])),
|
|
]),
|
|
])),
|
|
await new Future.value(new Node('13', [
|
|
new Node('14', []),
|
|
])),
|
|
]),
|
|
])),
|
|
]);
|
|
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();
|
|
}
|
|
}
|