Constructs a new, empty SymbolTable for the given ClassWriter. @param classWriter a ClassWriter.
(final ClassWriter classWriter)
| 171 | * @param classWriter a ClassWriter. |
| 172 | */ |
| 173 | SymbolTable(final ClassWriter classWriter) { |
| 174 | this.classWriter = classWriter; |
| 175 | this.sourceClassReader = null; |
| 176 | this.entries = new Entry[256]; |
| 177 | this.constantPoolCount = 1; |
| 178 | this.constantPool = new ByteVector(); |
| 179 | } |
| 180 | |
| 181 | /** |
| 182 | * Constructs a new SymbolTable for the given ClassWriter, initialized with the constant pool and |
nothing calls this directly
no test coverage detected