boojay
boojay copied to clipboard
static final constants not supported
static final constants are not correctly handled. The expectation was that they would be pre-compiled constants but instead are unassigned fields of value = 0
static final pinCount = 12
def doTest():
print "12 = "
print pinCount
==> 12=0