Hacker News new | ask | show | jobs
by nessup 3235 days ago
From the Medium post about speed improvements in this version:

> The size of a function, including it’s signature, the white space and even comments can affect whether the function can be inlined by V8 or not. Yes: adding a comment to your function may cause a performance hit somewhere in the range of a 10% speed reduction.

Uhh... byeee

1 comments

I can't even think of a reason why a comment would cause a 10% speed reduction. Something has seriously gone very wrong there.
Agreed. What the absolute hell? This entirely contradicts how I understand programming languages work. Whitespace, tokens, formatting, should be irrelevant once it's all in an AST.
This is just a simple heuristic that's good enough for real code on the web. Usually whitespace and comments are stripped out during build step. I imagine this heuristic was implemented as something simple and working and that's that.

Remember that they are not writing a monument of perfect software but something pragmatic that should work good in most cases.