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
When a user-defined function (not a built-in function) is converted to a string, the jerryscript engine returns a placeholder for '/* ecmascript */' instead of the actual function body string. This is inconsistent with the ECMAScript specification and mainstream engine behavior, and may have an impact on the relevant code.
Version
v3.0.0
Testcase
var functionArray = [
function () {}
];
functionArray = functionArray + functionArray;
print(functionArray.length);
Output
64
Expected output
28
The text was updated successfully, but these errors were encountered:
Description
When a user-defined function (not a built-in function) is converted to a string, the jerryscript engine returns a placeholder for '/* ecmascript */' instead of the actual function body string. This is inconsistent with the ECMAScript specification and mainstream engine behavior, and may have an impact on the relevant code.
Version
Testcase
Output
Expected output
The text was updated successfully, but these errors were encountered: