On the UI developers bootstrap a WebWorker application by calling
import "package:angular2/web_workers/ui";
bootstrap("file.dart");
Currently the transformer will rewrite this to
import "package:angular2/web_workers/ui";
bootstrapStatic("file.dart");
Which will throw since bootstrapStatic isn't defined.