src/share/classes/jdk/internal/org/objectweb/asm/tree/LineNumberNode.java

Print this page

        

*** 82,94 **** public LabelNode start; /** * Constructs a new {@link LineNumberNode}. * ! * @param line a line number. This number refers to the source file from * which the class was compiled. ! * @param start the first instruction corresponding to this line number. */ public LineNumberNode(final int line, final LabelNode start) { super(-1); this.line = line; this.start = start; --- 82,96 ---- public LabelNode start; /** * Constructs a new {@link LineNumberNode}. * ! * @param line ! * a line number. This number refers to the source file from * which the class was compiled. ! * @param start ! * the first instruction corresponding to this line number. */ public LineNumberNode(final int line, final LabelNode start) { super(-1); this.line = line; this.start = start;