|
|
|
|
|
by bb85
3709 days ago
|
|
For your specific example, probably because the implementation is different. The most notable difference is that arrow functions do not set the "arguments" variable, but there are other subtleties. I'm not sure how it is done in V8 and co, but if the code is highly optimized, you might have to rewrite big chunks of it, even for small differences, because your optimizations do not go along with a slightly different implementation, or to avoid painful regressions. |
|