forked from VimPlug/jedi
Further small flow_analysis corrections. Keywords are only equal to other keywords if they are the same. Not in case of the same value anymore.
This commit is contained in:
@@ -153,7 +153,7 @@ class ExecutedParam(pr.Param):
|
||||
def eval(self, evaluator):
|
||||
types = []
|
||||
for v in self.values:
|
||||
if isinstance(v, (pr.Simple, pr.Name, pr.Literal)):
|
||||
if isinstance(v, (pr.Simple, pr.Leaf)):
|
||||
types += evaluator.eval_element(v)
|
||||
else:
|
||||
types.append(v)
|
||||
|
||||
Reference in New Issue
Block a user