|
Groovy example source code file (Bytecode2Bug.groovy)
The Groovy Bytecode2Bug.groovy source code
package groovy.bugs
/**
* @version $Revision: 4996 $
*/
class Bytecode2Bug extends GroovyTestCase {
Integer count = 0
void testBytecodeBug() {
getCollection().each { count += it }
}
void testTedsBytecodeBug() {
//doTest(getCollection())
def a = [1, 2, 3, 4]
doTest(a)
}
void doTest(args) {
def m = [:]
def i = 1
args.each { m.put(it, i++) }
assert m[1] == 1
assert m[2] == 2
assert m[3] == 3
assert m[4] == 4
println("created: ${m}")
assert i == 5
}
void testTedsBytecode2Bug() {
def m = [:]
def i = 1
getCollection().each { m.put(it, i++) }
assert m[1] == 1
assert m[2] == 2
assert m[3] == 3
assert m[4] == 4
println("created: ${m}")
assert i == 5
}
def getCollection() {
[1, 2, 3, 4]
}
}
Other Groovy examples (source code examples)Here is a short list of links related to this Groovy Bytecode2Bug.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.