MCPcopy Index your code
hub / github.com/clojure/clojure / SymbolTable

Method SymbolTable

src/jvm/clojure/asm/SymbolTable.java:173–179  ·  view source on GitHub ↗

Constructs a new, empty SymbolTable for the given ClassWriter. @param classWriter a ClassWriter.

(final ClassWriter classWriter)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 15

addConstantIntegerMethod · 0.95
addConstantLongMethod · 0.95
addConstantUtf8Method · 0.95
addMethod · 0.95
getItemMethod · 0.80
getItemCountMethod · 0.80
putByteArrayMethod · 0.80

Tested by

no test coverage detected