Adds a FieldNode to this ClassNode. The field is added to the end of the field list and its declaring class is set to this node's redirect target. The field is registered in the internal field index for fast lookup by name. @param node the FieldNode to add, must not be null
(FieldNode node)
| 723 | * @see #removeField(String) |
| 724 | */ |
| 725 | public void addField(FieldNode node) { |
| 726 | addField(node, true); |
| 727 | } |
| 728 | |
| 729 | private void addField(FieldNode node, boolean append) { |
| 730 | ClassNode r = redirect(); |