Merge pull request #4261 from tinybug/patch-4

Update jsinterp.py
This commit is contained in:
Philipp Hagemeister 2014-11-21 10:41:02 +01:00
commit e6c9c8f6ee
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ class JSInterpreter(object):
pass
m = re.match(
r'^(?P<var>[a-zA-Z0-9_]+)\.(?P<member>[^(]+)(?:\(+(?P<args>[^()]*)\))?$',
r'^(?P<var>[$a-zA-Z0-9_]+)\.(?P<member>[^(]+)(?:\(+(?P<args>[^()]*)\))?$',
expr)
if m:
variable = m.group('var')