1
0
forked from VimPlug/jedi

use evaluator everywhere in representation

This commit is contained in:
Dave Halter
2013-12-24 15:38:40 +01:00
parent 65013d1019
commit ae17c66148
2 changed files with 23 additions and 19 deletions
+2 -2
View File
@@ -658,8 +658,8 @@ class Evaluator(object):
position=position))
return self.follow_paths(path, set(result), call_scope, position=position)
def execute(self, scope, params):
return er.Execution(scope, params).get_return_types()
def execute(self, scope, params, evaluate_generator=False):
return er.Execution(scope, params).get_return_types(evaluate_generator)
def goto(self, stmt, call_path=None):
if call_path is None: