blob: eaaa76faa2cfb0e6a9d49ff203cac8c3036842c6 [file] [log] [blame]
library;
import self as self;
import "dart:core" as core;
import "dart:async" as asy;
static method method(core::Iterable<core::int> iterable) core::Iterable<core::int> sync* {
yield 1;
yield 2;
yield* iterable;
}
static method asyncMethod(asy::Stream<core::int> stream) asy::Stream<core::int> async* {
yield 1;
yield 2;
yield* stream;
}