MCPcopy Create free account
hub / github.com/bfbbdecomp/bfbb / GArrayType

Class GArrayType

ghidra_scripts/gimport/gtypes.py:68–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

66
67
68class GArrayType(GType):
69 def __init__(self):
70 self.subscripts: List[DwarfSubscriptDataItem] = []
71
72 def __str__(self):
73 subscripts_str = ", ".join(str(subscript) for subscript in self.subscripts)
74 return f"ArrayType({subscripts_str})"
75
76
77class GFundType(GType):

Callers 2

parse_typeFunction · 0.85
create_array_typeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected