dop251 / goja

ECMAScript/JavaScript engine in pure Go

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

function calls with ?. throw TypeError

losas opened this issue · comments

Related to #350

console.log(adventurer.someNonExistentMethod?.());
/*
expected output: undefined
goja: 
   panic: TypeError: Object has no member 'someNonExistentMethod' at ...
*/

Thanks for reporting!