blob: 42a4cb884cce1fc52c01006df6f1f4a7658b92b1 [file] [edit]
library;
import self as self;
import "dart:async" as asy;
import "dart:core" as core;
static method applyState() asy::Future<core::bool> async /* emittedValueType= core::bool */
return true;
static method test() asy::Future<core::bool> async /* emittedValueType= core::bool */ {
core::bool changed = false;
try {
changed = changed.{core::bool::|}(await self::applyState()){(core::bool) core::bool};
return changed;
}
finally {
core::print("done");
}
}
static method main() void async /* emittedValueType= void */ {
await self::test();
}