forked from VimPlug/jedi
for loops are now parsed even if they are really faulty and don't end.
This commit is contained in:
@@ -275,6 +275,10 @@ class Scope(Simple, IsScope):
|
||||
if self.isinstance(Function):
|
||||
checks += self.params + self.decorators
|
||||
checks += [r for r in self.returns if r is not None]
|
||||
if self.isinstance(Flow):
|
||||
checks += self.inputs
|
||||
if isinstance(self, ForFlow):
|
||||
checks.append(self.set_stmt)
|
||||
|
||||
for s in checks:
|
||||
if isinstance(s, Flow):
|
||||
|
||||
Reference in New Issue
Block a user