Example #1
0
 def __init__(self):
     State.__init__(self, 'FREE_ARGUMENT_START')
Example #2
0
 def __init__(self):
     State.__init__(self, 'FUNCTION_NAME')
Example #3
0
 def __init__(self):
     State.__init__(self, 'ARGUMENT')
Example #4
0
 def __init__(self):
     State.__init__(self, 'VALUE_ESCAPE')
Example #5
0
 def __init__(self):
     State.__init__(self, 'STRING')
Example #6
0
 def __init__(self):
     State.__init__(self, 'CONSTRAINT_START')
Example #7
0
 def __init__(self):
     State.__init__(self, 'OPERATOR_END')
Example #8
0
 def __init__(self):
     State.__init__(self, 'CODE')
Example #9
0
 def __init__(self):
     State.__init__(self, 'CODE_ADVISER')
Example #10
0
 def __init__(self):
     State.__init__(self, 'START')
Example #11
0
 def __init__(self):
     State.__init__(self, 'MESSAGE')
Example #12
0
 def __init__(self):
     State.__init__(self, 'EXPRESSION_END')
Example #13
0
 def __init__(self):
     State.__init__(self, 'MEMBER')
Example #14
0
 def __init__(self):
     State.__init__(self, 'STRING_ESCAPE')
Example #15
0
 def __init__(self):
     State.__init__(self, 'REQUIRED_ARGUMENT')
Example #16
0
 def __init__(self):
     State.__init__(self, 'CODE_PYTHON')
Example #17
0
 def __init__(self):
     State.__init__(self, 'ACCEPT')
Example #18
0
 def __init__(self):
     State.__init__(self, 'CODE_PYTHON_CLOSING_BRACE')
Example #19
0
 def __init__(self):
     State.__init__(self, 'VARIABLE_END')
Example #20
0
 def __init__(self, parent_state: State):
     State.__init__(self, 'ESCAPE')
     self.parent_state = parent_state
Example #21
0
 def __init__(self):
     State.__init__(self, 'VALUE')
Example #22
0
 def __init__(self, parent_state: State):
     State.__init__(self, 'CODE_STRING')
     self.parent_state = parent_state
Example #23
0
 def __init__(self):
     State.__init__(self, 'CONSTRAINT_END')
Example #24
0
 def __init__(self):
     State.__init__(self, 'OPTIONAL_EXPRESSION')