mirror of
https://github.com/espruino/Espruino.git
synced 2025-12-08 19:06:15 +00:00
7 lines
209 B
JavaScript
7 lines
209 B
JavaScript
// issue with function decls when the last token is right at the end of the line
|
|
|
|
var a=eval("function a() {\naaaaaaaaa\nssssssss\n}")
|
|
var r=a.toString();
|
|
|
|
result = r=="function () {\naaaaaaaaa\nssssssss\n}";
|