Parses a RETURN statement
(self)
| 464 | ftype=FlowSignal.GOSUB) |
| 465 | |
| 466 | def __returnstmt(self): |
| 467 | """Parses a RETURN statement""" |
| 468 | |
| 469 | self.__advance() # Advance past RETURN token |
| 470 | |
| 471 | # Set up and return the flow signal |
| 472 | return FlowSignal(ftype=FlowSignal.RETURN) |
| 473 | |
| 474 | def __stopstmt(self): |
| 475 | """Parses a STOP statement""" |
no test coverage detected