I'm new to dart, and am using Dart Editor on Windows.
I noticed that my compiled javascript is huge, so I kept removing more and more code to see what was causing it, but I don't think I'm getting anywhere. Here's my program right now:
import 'dart:html';
void main() {
var video = querySelector("#vid");
}
That's literally it. I've stripped out everything but one instruction.
And this is the produced javascript (it won't fit inline):
https://gist.github.com/DSteve595/504887a19a05614bcc94
What am I doing wrong? This program's practically empty!