Sergey Rubanov
Sergey Rubanov
@Igmat do you have any dates already? I'd like to join and maybe organize something similar in Moscow next year.
I'd prefer to have versions because breaking changes are really useful sometimes. Having versions of std could fix JS in many ways
IMO all std things should be frozen. There are plenty of tries of patching built-ins and this only creates more web compat issues (and potentially performance issues). If something is...
@ljharb I have no any proposals in mind yet, maybe special syntax, IDK. Patching std lib could lead to problems like some proposal (`contains`, `flatMap`, `global`, etc.) faced before.
Yes, that's a problem definitely. How other interpreted languages solve these problems?
It seems that it's easier for most of other languages because they are interpreted in concrete environments but maybe there are some other embedded languages that have separate targets to...
LGTM
Should `123.m` be a valid literal?
I can imaging cases where `1.d` being invalid syntax could cause problems. Let's say, we have some code generator and trying to `eval` a template string containing `${integer}.${fraction}${isBigDecimal ? 'd'...
I don't like how `0.d` primitive value or `0.d.toString()` looks, but I think that making it an invalid syntax will lead to a worse developer experience.