In Firefox 3.5, I type this in the Firebug console :
false=={} // => evals to false
{}==false // syntax error
What is the explanation for this ?
|
In Firefox 3.5, I type this in the Firebug console :
What is the explanation for this ? |
||||
| show 4 more comments |
at the start of a statement signals a ‘statement block’ (see ECMA-262-3 section 12.1), which contains a list of statements.
immediately ends the statement block with no statements in it. That's fine. But now the parser is looking for the next statement:
Huh? That's not a statement; syntax error. What are statement blocks for? Well, you are writing a statement block every time you say:
JavaScript defines these flow-control statements as:
ie. in the single statement form with no braces. It then allows you to use a statement-block anywhere you can use a single statement, which means you can have if-braces-many-statements. But it also means you can have a statement-block on its own with no associated flow-control statement. This serves absolutely no practical purpose! You might be tempted to think it gave you information-hiding, but no:
...results in JavaScript defines flow control and statement blocks in this manner because C (and other languages derived from it) did. Those languages didn't make Even this wannabe-literal:
is a valid statement block, because ‘:’ is used to denote a label in a statement. (and (A literal with two properties will cause a syntax error, as object literals use comma separators, but labelled statements must be separated by semicolons.) This is not the only place where JavaScript's loose syntax can trip you up by making some other statement of something you think is an expression. |
||||
|
OK, I've studied the ECMAScript specification (PDF) and I have an explanation which discuses the BNF grammar. ECMAScript sources are parsed starting with the main symbol, called
SourceElements' (recursive) definition is this:
The, SourceElement is defined as:
What we're interested in is the object literal syntax, so we ignore FunctionDeclaration and look at the Statement symbol:
I'm not sure if the listing order matters (this is how they are in the spec), but... an object literal is an ExpressionStatement, about which the standards say the following (section 12.4):
So we may have an expression at the start of the program, but it must not start with an opening curly brace (
|
|||||||||
|
|
Simply to say, |
|||
|
|
false=={}evals tofalsein my Firefox 3.5.3 – SilentGhost Oct 2 '09 at 13:38{}==is at the beginning of a statement. – Matthew Crumley Oct 2 '09 at 14:38