Enters a symbol into this scope.
(Symbol symbol)
| 168 | |
| 169 | /** Enters a symbol into this scope. */ |
| 170 | public void putSymbol(Symbol symbol) { |
| 171 | if (symbol.getName() == null) throw new IllegalArgumentException("null symbol name"); |
| 172 | ensureSymbolTable(); |
| 173 | symbolTable.put(symbol.getName(), symbol); |
| 174 | symbol.setContainingTable(this); |
| 175 | top.addSymbol(symbol); |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * Returns the symbol table for this scope. |
no test coverage detected