blob: 04d4841d7a3eb2607d67b5b4af94755ebb5eb7b0 [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) dynamic {
for (core::int i in iterable) {
core::print(i);
}
}
static method asyncMethod(asy::Stream<core::int> stream) dynamic async /* emittedValueType= dynamic */ {
await for (core::int i in stream) {
core::print(i);
}
}