(self, st, res)
| 618 | |
| 619 | class ComprehensionTests(unittest.TestCase): |
| 620 | def get_identifiers_recursive(self, st, res): |
| 621 | res.extend(st.get_identifiers()) |
| 622 | for ch in st.get_children(): |
| 623 | self.get_identifiers_recursive(ch, res) |
| 624 | |
| 625 | def test_loopvar_in_only_one_scope(self): |
| 626 | # ensure that the loop variable appears only once in the symtable |
no test coverage detected