Files
sdk/pkg/front_end/testcases/async_function.dart.outline.expect
T
Sigmund Cherem ebfd044456 Remove async modifier from outlines
In the future we might want to re-add this, but for now, no one needs to know
that a function was async/async*/sync*. This also allows the async/await
transformer to ignore external references without any special logic.

R=scheglov@google.com

Review-Url: https://codereview.chromium.org/2888823004 .
2017-05-18 15:20:20 -07:00

21 lines
569 B
Plaintext

library;
import self as self;
import "dart:async" as asy;
import "dart:core" as core;
static field core::List<core::String> stringList;
static method asyncString() → asy::Future<core::String>
;
static method asyncString2() → asy::Future<core::String>
;
static method syncStarString() → core::Iterable<core::String>
;
static method syncStarString2() → core::Iterable<core::String>
;
static method asyncStarString() → asy::Stream<core::String>
;
static method asyncStarString2() → asy::Stream<core::String>
;
static method main() → dynamic
;