Sets this item to an ClassWriter#INT INT item. @param intVal the value of this item.
(final int intVal)
| 148 | */ |
| 149 | |
| 150 | void set (final int intVal) { |
| 151 | this.type = ClassWriter.INT; |
| 152 | this.intVal = intVal; |
| 153 | this.hashCode = type + intVal; |
| 154 | } |
| 155 | |
| 156 | /** |
| 157 | * Sets this item to a {@link ClassWriter#LONG LONG} item. |
no test coverage detected