blob: 97a946402ddb766729404bec426b1f24c2a40cc5 [file] [log] [blame]
// Copyright (c) 2017, 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.
/*member: main:[null]*/
main() {
asyncMethod();
asyncMethodWithReturn();
asyncStarMethod();
syncStarMethod();
}
/*member: asyncMethod:[exact=_Future]*/
asyncMethod() async {}
/*member: asyncMethodWithReturn:Union([exact=JSUInt31], [exact=_Future])*/
asyncMethodWithReturn() async {
return 0;
}
/*member: asyncStarMethod:[exact=_ControllerStream]*/
asyncStarMethod() async* {}
/*member: syncStarMethod:[exact=_SyncStarIterable]*/
syncStarMethod() sync* {}