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

Method visitLineNumber

src/jvm/clojure/asm/MethodWriter.java:1527–1535  ·  view source on GitHub ↗
(final int line, final Label start)

Source from the content-addressed store, hash-verified

1525 }
1526
1527 @Override
1528 public void visitLineNumber(final int line, final Label start) {
1529 if (lineNumberTable == null) {
1530 lineNumberTable = new ByteVector();
1531 }
1532 ++lineNumberTableLength;
1533 lineNumberTable.putShort(start.bytecodeOffset);
1534 lineNumberTable.putShort(line);
1535 }
1536
1537 @Override
1538 public void visitMaxs(final int maxStack, final int maxLocals) {

Callers 15

emitUnboxedMethod · 0.45
emitMethod · 0.45
emitAssignMethod · 0.45
emitUnboxedMethod · 0.45
emitMethod · 0.45
emitAssignMethod · 0.45
emitUnboxedMethod · 0.45
emitMethod · 0.45
emitUnboxedMethod · 0.45
emitMethod · 0.45
doEmitMethod · 0.45

Calls 1

putShortMethod · 0.80

Tested by

no test coverage detected