boojay icon indicating copy to clipboard operation
boojay copied to clipboard

static final constants not supported

Open JamesCaska opened this issue 10 years ago • 0 comments

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

JamesCaska avatar Sep 20 '14 22:09 JamesCaska