Files
sdk/pkg/front_end/testcases/general/async_nested.dart
T
Johnni Winther c049178dc4 [cfe] Remove language version from testcases/general (Part 1 of ?)
This in preparation for enabling all bleeding edge experimental
features in testcases/general to get early feedback on how new features
affect existing code.

Change-Id: I50d7f92b547dfb3a1482d485b5dad40dc8bc6985
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/234720
Reviewed-by: Chloe Stefantsova <cstefantsova@google.com>
Commit-Queue: Johnni Winther <johnniwinther@google.com>
2022-03-02 11:51:20 +00:00

47 lines
1.3 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";
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', [
await new Future.value(new Node('7', [])),
])),
await new Future.value(new Node('8', [])),
await new Future.value(new Node('9', [])),
]),
])),
])),
await new Future.value(new Node('10', [])),
]);
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();
}
}