MCPcopy Create free account
hub / github.com/FEX-Emu/FEX / FunctionDecl

Class FunctionDecl

Scripts/DefinitionExtract.py:122–130  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

120
121@dataclass
122class FunctionDecl:
123 Name: str
124 Ret: str
125 Params: list
126
127 def __init__(self, Name, Ret):
128 self.Name = Name
129 self.Ret = Ret
130 self.Params = []
131
132FunctionDecls = []
133

Callers 1

HandleFunctionDeclCursorFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected