Parses a LET statement, consuming the LET keyword.
(self)
| 429 | self.__prnt_column = 0 |
| 430 | |
| 431 | def __letstmt(self): |
| 432 | """Parses a LET statement, |
| 433 | consuming the LET keyword. |
| 434 | """ |
| 435 | self.__advance() # Advance past the LET token |
| 436 | self.__assignmentstmt() |
| 437 | |
| 438 | def __gotostmt(self): |
| 439 | """Parses a GOTO statement |
no test coverage detected