[tools] add Stdio to AppContext created by daemon AppInstance (#15268)

This commit is contained in:
Yegor 2018-03-09 12:25:30 -08:00 committed by GitHub
parent ded538a1bb
commit 2e429bfbdd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -812,6 +812,7 @@ class AppInstance {
final AppContext appContext = new AppContext();
appContext.setVariable(Logger, _logger);
appContext.setVariable(Stdio, const Stdio());
return appContext.runInZone(method);
}
}