blob: 001fed5fe8b6a0f7d4a1fc94d3aaad2fa400c1b9 [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.
// @dart = 2.7
/*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* {}