Files
sdk/pkg/analyzer_cli/test/data/sky_engine/lib/async.dart
T
Konstantin Shcheglov 2efeca700f Rename the folder with sky_engine test package.
R=brianwilkerson@google.com

Change-Id: I38d71292096b53ef932b0c2d3b6dd7f61706e023
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/128762
Reviewed-by: Brian Wilkerson <brianwilkerson@google.com>
Commit-Queue: Konstantin Shcheglov <scheglov@google.com>
2019-12-17 20:20:09 +00:00

12 lines
325 B
Dart

// Copyright (c) 2016, 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.
library dart.async;
abstract class FutureOr<T> {}
abstract class Future<T> {}
abstract class Stream<T> {}