Adds a FieldNode to this ClassNode at the beginning of the field list. This method is similar to #addField(FieldNode) but prepends the field instead of appending it, which can be useful when field declaration order matters. @param node the FieldNode to add first, must not be
(FieldNode node)
| 770 | * @see #addField(FieldNode) |
| 771 | */ |
| 772 | public void addFieldFirst(FieldNode node) { |
| 773 | addField(node, false); |
| 774 | } |
| 775 | |
| 776 | /** |
| 777 | * Creates and adds a {@link FieldNode} to the beginning of this ClassNode's field list |
no test coverage detected