Source code for pudding.processor
"""Package for processing tokens of the compiled syntax."""
from enum import Enum
[docs]
class PAction(Enum):
"""Processing action."""
CONTINUE = 0
ENTER = 1
EXIT = 2
NEXT = 3
RESTART = 4