Skip to content

Commit

Permalink
bump
Browse files Browse the repository at this point in the history
  • Loading branch information
maximiliankaul committed Oct 17, 2023
1 parent 7a358a6 commit f05b33e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,8 @@ abstract class Language<T : LanguageFrontend<*, *>> : Node() {
val superTypes = root.ancestors.map { it.type }

// Check, if super type (or its root) is in the list
return superType.root in superTypes
return superType.root in superTypes ||
superType is UnknownType // TODO remove / move to python
}
}

Expand Down

0 comments on commit f05b33e

Please sign in to comment.