| 1054 | } |
| 1055 | |
| 1056 | public void visitLineNumber (final int line, final Label start) { |
| 1057 | if (CHECK) { |
| 1058 | if (start.owner != this || !start.resolved) { |
| 1059 | throw new IllegalArgumentException(); |
| 1060 | } |
| 1061 | } |
| 1062 | if (lineNumber == null) { |
| 1063 | cw.newUTF8("LineNumberTable"); |
| 1064 | lineNumber = new ByteVector(); |
| 1065 | } |
| 1066 | ++lineNumberCount; |
| 1067 | lineNumber.put2(start.position); |
| 1068 | lineNumber.put2(line); |
| 1069 | } |
| 1070 | |
| 1071 | // -------------------------------------------------------------------------- |
| 1072 | // Utility methods: control flow analysis algorithm |