Roku Developer Program

Join our online forum to talk to Roku developers and fellow channel creators. Ask questions, share tips with the community, and find helpful resources.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Komag
Roku Guru

FOR EACH bug - one iteration breaks another

I was diagnosing a game bug and came across this behavior, which seems like a bug to me.

BrightScript Debugger> a = ["red", "blue"]
BrightScript Debugger> ? a
red
blue

BrightScript Debugger> for each col in a: ? "color " col: end for
color red
color blue
BrightScript Debugger> for each col in a: ? "color " col: ? "test " a: end for
color red
test red
blue

BrightScript Debugger>


The FOR EACH loop breaks! It never does blue!
Why would printing a break the larger loop? Why does iterating through a to print it break the overall iteration of a for the FOR EACH loop? Is that a bug or is that common/known behavior across many programming languages?
0 Kudos
5 REPLIES 5
adamkaz
Channel Surfer

Re: FOR EACH bug - one iteration breaks another

Similarly interesting behavior:

BrightScript Debugger> for each col in a: ? [a[0],a[1]]:end for
red
blue

red
blue

BrightScript Debugger> for each col in a: ? a:end for
red
blue
0 Kudos
destruk
Binge Watcher

Re: FOR EACH bug - one iteration breaks another

"Komag" wrote:
I was diagnosing a game bug and came across this behavior, which seems like a bug to me.

BrightScript Debugger> a = ["red", "blue"]
BrightScript Debugger> ? a
red
blue

BrightScript Debugger> for each col in a: ? "color " col: end for
color red
color blue
BrightScript Debugger> for each col in a: ? "color " col: ? "test " a: end for
color red
test red
blue

BrightScript Debugger>


The FOR EACH loop breaks! It never does blue!
Why would printing a break the larger loop? Why does iterating through a to print it break the overall iteration of a for the FOR EACH loop? Is that a bug or is that common/known behavior across many programming languages?



You're probably confusing the counter by referencing the array that way.
This code achieves the desired result -

Function Main()
a=["red","blue"]
for each col in a
print "color " col
end for
for each col in a
print "color" col
end for
for each col in a
print "test" col
end for
End Function


Produces this output -
color red
color blue
colorred
colorblue
testred
testblue

It is proper behavior according to other languages --
http://stackoverflow.com/questions/3307 ... in-foreach
0 Kudos
RokuMarkn
Visitor

Re: FOR EACH bug - one iteration breaks another

This sounds like the same issue reported in this thread:
viewtopic.php?f=34&t=66766&p=427300

--Mark
0 Kudos
RokuKC
Roku Employee
Roku Employee

Re: FOR EACH bug - one iteration breaks another

Yes. Currently each enumerable object has a single iteration pointer associated with it.

So if within a 'for each' loop you nest another 'for each' loop, directly call the object's ifEnum functions Reset or Next, print the object (which internally iterates over the object), or similarly call FormatJSON, it will affect the outer iterator.
0 Kudos
Komag
Roku Guru

Re: FOR EACH bug - one iteration breaks another

Ouch, I'll have to be really careful about that then, drat. 😞
0 Kudos