2efeca700f
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>
12 lines
325 B
Dart
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> {}
|