Viewing profile — notSorella
notSorella
HN member- Joined
- Sun, Aug 07, 2011, 4:10 PM UTC
- HN karma
- 7
- Public activity
- 6 items
- HN profile
- View on Hacker News ↗
About notSorella
No profile information was provided.
Recent public activity
-
comment
Comment #3380224
That's a whole different matter, which can't make you shoot yourself in the foot without knowing it for any non-trivial code. CoffeeScript's scoping forces you to always keep track…
-
comment
Comment #2857615
Never said it was an object literal eh. Object literals can only occur inside expressions, that's pretty well defined in the JavaScript AST too, which is described to the utmost de…
-
comment
Comment #2857395
My feelings exactly :3
-
comment
Comment #2857382
I really don't see any problem with the way JavaScript handles it. "Unless the following line can be part of the preceding statement, end the current statement" is a pretty natural…
-
comment
Comment #2857371
That's not a problem with the line joining stuff. Both `return' and `{ foo: bar }' are ENTIRE VALID statements in their own right. returnStmt ::= "return" [ expression ] (";" or EO…
-
comment
Comment #2856943
And where would JavaScript not handle them in a way people don't expect them to be handled? Comparing Python's handling of semicolons with JavaScript's ASI, you get the following: …