(self, symbol: SymbolNode)
| 1434 | return reg |
| 1435 | |
| 1436 | def lookup(self, symbol: SymbolNode) -> SymbolTarget: |
| 1437 | return self.symtables[-1][symbol] |
| 1438 | |
| 1439 | def add_local(self, symbol: SymbolNode, typ: RType, is_arg: bool = False) -> Register: |
| 1440 | """Add register that represents a symbol to the symbol table. |
no outgoing calls
no test coverage detected