You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 22, 2018. It is now read-only.
I am not using chrome canary, but Chrome 42 with the ES6 flags, so maybe that's the reason behind the issue I run into. Basically I get this error if I open the existing sunflower.html:
Uncaught TypeError: A 'super' constructor call may only appear as the first statement of a function, and its arguments may not access 'this'. Other forms are not yet supported.
which seems to come from here:
class SunflowerSeed extends dart.mixin(Circle, CirclePainter) {
constructor(x, y, radius, color) {
if (color === undefined) color = null;
super(x, y, radius);
if (color !== null) this.color = color;
}
}