We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 606c67f commit e9c697bCopy full SHA for e9c697b
textbeat/player.py
@@ -7,13 +7,12 @@
7
STACK_SIZE = 64
8
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
+ """This enum types help us decide whether we should continue in the loop, break, or proceed.
+ This type is needed so we can choose how to deal interact with a loop outside a functions scope.
13
"""
14
- PROCEED = 0 # Continue parsing the current line
15
- CONTINUE = 1 # Skips the current line
16
- BREAK = 2 # Stop playback
+ PROCEED = 0 # Continue forward in the current loop
+ CONTINUE = 1 # Skip to the next iteration
+ BREAK = 2 # Break from the loop
17
18
class StackFrame(object):
19
0 commit comments