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

Class GGlobalSubroutine

ghidra_scripts/gimport/gtypes.py:45–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43
44
45class GGlobalSubroutine(GGlobal):
46 def __init__(self):
47 self.mangled_name: str = None
48 self.type: GType = None
49 self.params: List[GGlobalSubroutineParameter] = []
50
51 def __str__(self):
52 params_str = ", ".join(str(param) for param in self.params)
53 return f"{self.type} {self.name}({params_str})"
54
55
56class GStructType(GType):

Callers 2

postprocess_cleanupMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected