Fabrice-TIERCELIN on master
Handle findFirst() and findAny() (compare)
Fabrice-TIERCELIN on master
Fix error message in ASTNodes.j… (compare)
Fabrice-TIERCELIN on master
Improve MAVEN build Performance (compare)
Fabrice-TIERCELIN on master
Separate analyze and refactoring (compare)
Fabrice-TIERCELIN on master
Closes #492; Only use methods i… (compare)
declareExpr
is not mine: public VariableDeclarationExpression declareExpr(Type type, SimpleName varName, Expression initializer) {
final VariableDeclarationFragment fragment = declareFragment(varName, initializer);
final VariableDeclarationExpression vde = ast.newVariableDeclarationExpression(fragment);
modifiers(vde).add(final0());
vde.setType(type);
return vde;
}
modifiers
method I wonder if it was pointing to a different modifiers
method before..