有没有办法继承/扩展 Djinni 的 DSL 中的接口?
例如:
parent = interface +c {
parentMethod();
}
child1 = interface +c {
childMethod1();
}
child2 = interface +c {
childMethod2();
}
我想继承child1
并child2
从parent
.
有没有办法继承/扩展 Djinni 的 DSL 中的接口?
例如:
parent = interface +c {
parentMethod();
}
child1 = interface +c {
childMethod1();
}
child2 = interface +c {
childMethod2();
}
我想继承child1
并child2
从parent
.