Looks up a symbol in this scope. @param name the symbol name @return the Symbol, or null if not found
(String name)
| 163 | * @return the Symbol, or {@code null} if not found |
| 164 | */ |
| 165 | public Symbol getSymbol(String name) { |
| 166 | return symbolTable == null ? null : symbolTable.get(name); |
| 167 | } |
| 168 | |
| 169 | /** Enters a symbol into this scope. */ |
| 170 | public void putSymbol(Symbol symbol) { |
no test coverage detected