1
0
forked from VimPlug/jedi

cleanup NameFinder.scopes, fully use scope_names_generator.

This commit is contained in:
Dave Halter
2014-07-03 11:48:26 +02:00
parent ea370a083d
commit c1ed3bf38a
2 changed files with 5 additions and 12 deletions

View File

@@ -705,6 +705,10 @@ class Flow(Scope):
self.next.parent = self.parent
return next
def scope_names_generator(self, position=None):
# For `with` and `for`.
yield self, filter_after_position(self.get_defined_names(), position)
class ForFlow(Flow):
"""