1
0
forked from VimPlug/jedi

first tests running again with the new structure

This commit is contained in:
Dave Halter
2013-12-24 16:05:43 +01:00
parent 28771b8f15
commit b9719b8c13
4 changed files with 16 additions and 16 deletions

View File

@@ -22,12 +22,12 @@ class RecursionDecorator(object):
self.func = func
self.reset()
def __call__(self, stmt, *args, **kwargs):
def __call__(self, evaluator, stmt, *args, **kwargs):
# print stmt, len(self.node_statements())
if self.push_stmt(stmt):
return []
else:
result = self.func(stmt, *args, **kwargs)
result = self.func(evaluator, stmt, *args, **kwargs)
self.pop_stmt()
return result