| 23 | |
| 24 | |
| 25 | class GGlobalVariable(GGlobal): |
| 26 | def __init__(self): |
| 27 | self.name: str = None |
| 28 | self.mangled_name: str = None |
| 29 | self.type: GType = None |
| 30 | |
| 31 | def __str__(self): |
| 32 | return f"{self.type} {self.name}" |
| 33 | |
| 34 | |
| 35 | class GGlobalSubroutineParameter: |
no outgoing calls
no test coverage detected