[jsinterp] Fix function calls without arguments.

This commit is contained in:
Kacper Michajłow 2016-11-05 06:11:51 +01:00
parent bc40b3a5ba
commit 189935f159
2 changed files with 9 additions and 2 deletions

View file

@ -104,6 +104,13 @@ class TestJSInterpreter(unittest.TestCase):
}''')
self.assertEqual(jsi.call_function('x'), [20, 20, 30, 40, 50])
def test_call(self):
jsi = JSInterpreter('''
function x() { return 2; }
function y(a) { return x() + a; }
function z() { return y(3); }
''')
self.assertEqual(jsi.call_function('z'), 5)
if __name__ == '__main__':
unittest.main()