Skip to content

Commit

Permalink
Merge pull request #62 from JetBrains-Research/not-null-polymorphism-…
Browse files Browse the repository at this point in the history
…checking

Add not null polymorphism checking
  • Loading branch information
arksap2002 authored Sep 11, 2023
2 parents 0c5b27f + efa448c commit 2d33a8a
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,7 @@ class PromptManager(
prompt += "=== polymorphism relations:\n"
polymorphismRelations.forEach { entry ->
for (currentSubClass in entry.value) {
currentSubClass.qualifiedName ?: continue
prompt += "${currentSubClass.qualifiedName} is a sub-class of ${entry.key.qualifiedName}.\n"
}
}
Expand Down

0 comments on commit 2d33a8a

Please sign in to comment.