Skip to content
Snippets Groups Projects
Commit 16226671 authored by Xun Yang's avatar Xun Yang
Browse files

add java.lang.Object to super set

parent b93dded8
No related branches found
No related tags found
No related merge requests found
......@@ -74,7 +74,7 @@ class TypeStruct():
# helper: get list of all super class/interface of a ClassInterNode
def getSupers(classType):
result = []
result = ["java.lang.Object"]
if not classType.super:
return result
for s in classType.super:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment