| 12345678910111213141516171819202122232425262728293031 |
- # Copyright (c) 2020 Rocky Bernstein
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU General Public License as published by
- # the Free Software Foundation, either version 3 of the License, or
- # (at your option) any later version.
- #
- # This program is distributed in the hope that it will be useful,
- # but WITHOUT ANY WARRANTY; without even the implied warranty of
- # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- # GNU General Public License for more details.
- #
- # You should have received a copy of the GNU General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>.
- def whilestmt(
- self, lhs: str, n: int, rule, tree, tokens: list, first: int, last: int
- ) -> bool:
- # When we are missing a COME_FROM_LOOP, the
- # "while" statement is nested inside an if/else
- # so after the POP_BLOCK we have a JUMP_FORWARD which forms the "else" portion of the "if"
- # Check this.
- # print("XXX", first, last, rule)
- # for t in range(first, last): print(tokens[t])
- # print("="*40)
- return tokens[last - 1] == "POP_BLOCK" and tokens[last] not in (
- "JUMP_FORWARD",
- "COME_FROM_LOOP",
- "COME_FROM",
- )
|