[jsinterp] Prevent mis-recognitions of local functions

This commit is contained in:
Philipp Hagemeister 2014-07-11 10:44:56 +02:00
parent c8bf86d50d
commit fc040bfd05
1 changed files with 1 additions and 1 deletions

View File

@ -99,7 +99,7 @@ class JSInterpreter(object):
def extract_function(self, funcname):
func_m = re.search(
(r'(?:function %s|%s\s*=\s*function)' % (
(r'(?:function %s|[{;]%s\s*=\s*function)' % (
re.escape(funcname), re.escape(funcname))) +
r'\((?P<args>[a-z,]+)\){(?P<code>[^}]+)}',
self.code)