|
Groovy example source code file (VariablePrecedenceTest.groovy)
The Groovy VariablePrecedenceTest.groovy source code
package groovy.bugs
class VariablePrecedenceTest extends GroovyTestCase {
def x = 100
def y = 93
def c = {x -> assert x == 1; assert y == 93; }
void testFoo() {
String[] args = ["a"]
main(args)
}
static void main(args) {
def vfoo = new VariablePrecedenceTest()
vfoo.c.call(1)
def z = 874;
1.times { assert vfoo.x == 100; assert z == 874; z = 39; }
assert z == 39;
vfoo.local();
}
void local() {
c.call(1);
def z = 874;
1.times { assert x == 100; assert z == 874; z = 39; }
assert z == 39;
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy VariablePrecedenceTest.groovy source code file: |
Other websites by Alvin Alexander:
Life/living in Alaska (OneMansAlaska.com)
How I Sold My Business (HowISoldMyBusiness.com)
Copyright 1998-2011 Alvin Alexander, devdaily.com
All Rights Reserved.