File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 7
7
STACK_SIZE = 64
8
8
9
9
class LoopResult (Enum ):
10
- """When parsing a line, this enum types help us decide whether we should continue in the loop,
11
- or break, or proceed further
12
- This type is needed so we can choose how to deal interact with a loop from within functions
10
+ """This enum types help us decide whether we should continue in the loop, break, or proceed.
11
+ This type is needed so we can choose how to deal interact with a loop outside a functions scope.
13
12
"""
14
- PROCEED = 0 # Continue parsing the current line
15
- CONTINUE = 1 # Skips the current line
16
- BREAK = 2 # Stop playback
13
+ PROCEED = 0 # Continue forward in the current loop
14
+ CONTINUE = 1 # Skip to the next iteration
15
+ BREAK = 2 # Break from the loop
17
16
18
17
class StackFrame (object ):
19
18
"""
You can’t perform that action at this time.
0 commit comments