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,11 @@
import lombok.var;
public class VarInFor {
public void enhancedFor() {
int[] list = new int[] {1, 2};
for (var shouldBeInt : list) {
System.out.println(shouldBeInt);
var shouldBeInt2 = shouldBeInt;
}
}
}