You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
console.log(adventurer.someNonExistentMethod?.());/*expected output: undefinedgoja: panic: TypeError: Object has no member 'someNonExistentMethod' at ...*/
The text was updated successfully, but these errors were encountered:
* Fixed panic in newArrayFromIter when the iterator is already closed. Fixesdop251#375
* Fixed panic when parsing invalid object property keys. Fixesdop251#376.
* Fixed accidental shadowing in the else branches of type assertion
* Fixed defineProperty("length") for arrays. Improved detection of non-standard array configurations. Upgraded tc39 tests.
* Return true values of struct fields or reflect slice elements, rather than pointers to them. Closesdop251#378.
* Upgraded dependencies. Closesdop251#380.
* Implemented exponentiation expressions. Closesdop251#381.
* Enabled tests that use ** operator. Some array fixes as a result.
* Implemented nullish coalescing operator (??). Closesdop251#382.
* Implemented `{Array,String,%TypedArray%}.prototype.at` (dop251#384)e7c2872c8)
* Fixed callee expressions in optional chains. Fixesdop251#385.
* Do not use fmt.Sprintf() for plain error strings. Fixesdop251#388.
* Implemented 'copy-on-change' mechanism for inner compound values. Fixesdop251#403.
* Fixed objectGoReflect equality. See dop251#403
* Don't clear interrupt until the stack is empty (dop251#405)
* test: skip Promise based tests
Related to #350
The text was updated successfully, but these errors were encountered: