Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Function to string does not comply with ECMAScript specification #5221

Open
ayuan0828 opened this issue Mar 2, 2025 · 1 comment
Open

Function to string does not comply with ECMAScript specification #5221

ayuan0828 opened this issue Mar 2, 2025 · 1 comment

Comments

@ayuan0828
Copy link

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

v3.0.0

Testcase

var functionArray = [
    function () {}
];
functionArray = functionArray + functionArray;
print(functionArray.length);

Output

64

Expected output

28
@kasperisager
Copy link

kasperisager commented Mar 28, 2025

JerryScript v3.0.0 produces 28 on my end as expected. Did you forget to enable Function.prototype.toString()? It's not enabled by default.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants