blob: a322f6aa7122de260f3602288a7cb9c2b8c9da4c [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* /* emittedValueType= core::int */ {
yield 1;
yield 2;
yield* iterable;
}
static method asyncMethod(asy::Stream<core::int> stream) asy::Stream<core::int> async* /* emittedValueType= core::int */ {
yield 1;
yield 2;
yield* stream;
}