[jsinterp] Do not expect dot in simple function call

pull/8/head
Philipp Hagemeister 2014-07-24 11:33:33 +02:00
rodzic 7272eab9d0
commit 892e3192fb
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -130,7 +130,7 @@ class JSInterpreter(object):
return a % b
m = re.match(
r'^(?P<func>[.a-zA-Z$]+)\((?P<args>[a-z0-9,]+)\)$', expr)
r'^(?P<func>[a-zA-Z$]+)\((?P<args>[a-z0-9,]+)\)$', expr)
if m:
fname = m.group('func')
argvals = tuple([