extends -> superclasses
This commit is contained in:
parent
fb239f612f
commit
7c4d715421
1 changed files with 2 additions and 2 deletions
|
@ -104,8 +104,8 @@ void enumerateDeps(schema::Node::Reader node, std::set<uint64_t>& deps) {
|
|||
}
|
||||
case schema::Node::INTERFACE: {
|
||||
auto interfaceNode = node.getInterface();
|
||||
for (auto extend: interfaceNode.getExtends()) {
|
||||
deps.insert(extend);
|
||||
for (auto superclass: interfaceNode.getSuperclasses()) {
|
||||
deps.insert(superclass.getId());
|
||||
}
|
||||
for (auto method: interfaceNode.getMethods()) {
|
||||
deps.insert(method.getParamStructType());
|
||||
|
|
Loading…
Reference in a new issue