Friday, 13 September 2013

Dart, extending a class that has a mixin editor warnings?

Dart, extending a class that has a mixin editor warnings?

I have:
class Button extends Control with Tooltip{
//stuff
}
and:
class SimpleContextMenuButton extends Button{ //error on 'Button' -
classes can only extend other classes
//stuff
}
why is Dart Editor complaining about extending from Button?

No comments:

Post a Comment