(final String packaze, final int access, final String... modules)
| 128 | } |
| 129 | |
| 130 | @Override |
| 131 | public void visitExport(final String packaze, final int access, final String... modules) { |
| 132 | exports.putShort(symbolTable.addConstantPackage(packaze).index).putShort(access); |
| 133 | if (modules == null) { |
| 134 | exports.putShort(0); |
| 135 | } else { |
| 136 | exports.putShort(modules.length); |
| 137 | for (String module : modules) { |
| 138 | exports.putShort(symbolTable.addConstantModule(module).index); |
| 139 | } |
| 140 | } |
| 141 | exportsCount++; |
| 142 | } |
| 143 | |
| 144 | @Override |
| 145 | public void visitOpen(final String packaze, final int access, final String... modules) { |
nothing calls this directly
no test coverage detected