added supporting of @var variables. The @var annotation has the same functionality as the @val except 'final' modifier.

This commit is contained in:
Bulgakov Alexander
2016-10-20 16:41:40 +03:00
parent 4d9da60f4f
commit 55619e8030
18 changed files with 321 additions and 106 deletions
@@ -0,0 +1,10 @@
import lombok.var;
public class VarModifier {
private String field = "";
public void testComplex() {
final var shouldBeFinalCharArray = field.toCharArray();
var shouldBeCharArray = field.toCharArray();
}
}