changeset 51686 | 493034cc3265 |
parent 51292 | 011eec5a66b2 |
child 51696 | 7f0cb9ee0534 |
51685:39e2b2d062c1 | 51686:493034cc3265 |
---|---|
51 def __iter__(self): |
51 def __iter__(self): |
52 return iter(self.lines) |
52 return iter(self.lines) |
53 |
53 |
54 |
54 |
55 class _llinstruction: # pytype: disable=ignored-metaclass |
55 class _llinstruction: # pytype: disable=ignored-metaclass |
56 |
|
57 __metaclass__ = abc.ABCMeta |
56 __metaclass__ = abc.ABCMeta |
58 |
57 |
59 @abc.abstractmethod |
58 @abc.abstractmethod |
60 def __init__(self, op1, op2): |
59 def __init__(self, op1, op2): |
61 pass |
60 pass |