Open
Description
The following code produces an error on dartdevk-weak-linux-release-chrome
configuration
import "dart:html";
main() async {
Window nw = window;
var fs = await nw.requestFileSystem(10);
}
Error message is not informative and looks like
Runtime window.onerror:
window.onerror called:
http://127.0.0.1:44241/root_build/gen/utils/dartdevc/kernel/amd/dart_sdk.js:4044:
Uncaught Error
Deobfuscated error and stack:
<no error message found>
at window.onerror called: unparsed
at <fn> out/ReleaseX64/gen/utils/dartdevc/kernel/amd/dart_sdk.js 4044
at Uncaught Error unparsed
This code works well on dart2js
configuration
Tested on the edge version of SDK (2.12)