Actions.pxd 585 B

12345678910111213141516171819202122232425
  1. cdef class Action:
  2. cdef perform(self, token_stream, text)
  3. cpdef same_as(self, other)
  4. cdef class Return(Action):
  5. cdef object value
  6. cdef perform(self, token_stream, text)
  7. cpdef same_as(self, other)
  8. cdef class Call(Action):
  9. cdef object function
  10. cdef perform(self, token_stream, text)
  11. cpdef same_as(self, other)
  12. cdef class Begin(Action):
  13. cdef object state_name
  14. cdef perform(self, token_stream, text)
  15. cpdef same_as(self, other)
  16. cdef class Ignore(Action):
  17. cdef perform(self, token_stream, text)
  18. cdef class Text(Action):
  19. cdef perform(self, token_stream, text)