ebfd044456
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 .
21 lines
569 B
Plaintext
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
|
|
;
|