(final String packaze, final int access, final String... modules)
| 142 | } |
| 143 | |
| 144 | @Override |
| 145 | public void visitOpen(final String packaze, final int access, final String... modules) { |
| 146 | opens.putShort(symbolTable.addConstantPackage(packaze).index).putShort(access); |
| 147 | if (modules == null) { |
| 148 | opens.putShort(0); |
| 149 | } else { |
| 150 | opens.putShort(modules.length); |
| 151 | for (String module : modules) { |
| 152 | opens.putShort(symbolTable.addConstantModule(module).index); |
| 153 | } |
| 154 | } |
| 155 | opensCount++; |
| 156 | } |
| 157 | |
| 158 | @Override |
| 159 | public void visitUse(final String service) { |
nothing calls this directly
no test coverage detected