|
Groovy example source code file (VariableScopingBug.groovy)
The Groovy VariableScopingBug.groovy source code
package groovy.bugs
/**
* @version $Revision: 4996 $
*/
class VariableScopingBug extends TestSupport {
void testBug() {
// undeclared variable x
shouldFail {
def shell = new GroovyShell()
shell.evaluate("""
class SomeTest {
void run() {
for (z in 0..2) {
def x = [1, 2, 3]
}
for (t in 0..3) {
for (y in x) {
println x
}
}
}
}
new SomeTest().run()""")
}
}
void testVariableReuse() {
def shell = new GroovyShell()
shell.evaluate("""
for (z in 0..2) {
def x = [1, 2, 3]
}
for (t in 0..3) {
def x = 123
println x
}""")
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy VariableScopingBug.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.