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