compat.genlib.fsm: fix after commit dac62754.

This commit is contained in:
whitequark 2019-07-08 10:03:20 +00:00
parent ec7fcd3697
commit 447bfa6ad5

View file

@ -16,11 +16,13 @@ class AnonymousState:
class NextState(Statement):
def __init__(self, state):
super().__init__()
self.state = state
class NextValue(Statement):
def __init__(self, target, value):
super().__init__()
self.target = target
self.value = value