full support interface inheritance

This commit is contained in:
Dima Granetchi
2015-01-02 01:25:45 +02:00
parent 5ab43ca192
commit 5c2df234e0
2 changed files with 26 additions and 14 deletions
+4 -2
View File
@@ -46,7 +46,9 @@ interface IIBindable extends IBindable {
var i(default, set):Int;
}
class BindableParent implements IIBindable {
interface IIIBindable extends IIBindable { }
class BindableParent implements IIIBindable {
public function new() {}
@:bindable
@@ -54,7 +56,7 @@ class BindableParent implements IIBindable {
}
@:bindable
class BindableChild extends BindableParent {
class BindableChild extends BindableParent implements IIBindable {
public var s:String;
}