Is there a way to inherit / extend interfaces in Djinni's DSL?
For example:
parent = interface +c {
parentMethod();
}
child1 = interface +c {
childMethod1();
}
child2 = interface +c {
childMethod2();
}
I want to inherit child1
and child2
from parent
.