1
0
forked from VimPlug/jedi

Array fixes except for conversions.

This commit is contained in:
Dave Halter
2016-11-13 16:18:46 +01:00
parent 21cfe4fc21
commit b2bdfe4a28
7 changed files with 21 additions and 16 deletions

View File

@@ -341,9 +341,9 @@ class Evaluator(object):
c = atom.children
if c[0].type == 'string':
# Will be one string.
types = self._eval_atom(c[0])
types = self._eval_atom(context, c[0])
for string in c[1:]:
right = self._eval_atom(string)
right = self._eval_atom(context, string)
types = precedence.calculate(self, types, '+', right)
return types
# Parentheses without commas are not tuples.