1bad9304a0
Also remove some duplicated code so libraries are mostly only printed in one place. Change-Id: I7cb86bff1938f05631d7eb3432deda2c9939f402 Reviewed-on: https://dart-review.googlesource.com/c/90226 Reviewed-by: Peter von der Ahé <ahe@google.com> Commit-Queue: Jens Johansen <jensj@google.com>
23 lines
591 B
Plaintext
23 lines
591 B
Plaintext
library;
|
|
import self as self;
|
|
import "dart:async" as asy;
|
|
import "dart:core" as core;
|
|
|
|
import "dart:async";
|
|
|
|
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
|
|
;
|