JavaScript for-loop in BNF - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T09:35:30Zhttp://stackoverflow.com/feeds/question/811604http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/811604/javascript-for-loop-in-bnf0JavaScript for-loop in BNFblahblah2009-05-01T14:32:25Z2009-05-01T14:51:02Z
<p>Hi</p>
<p>I'm writing BNF for JavaScript which will be used to generate a lexer and a parser for the language. However, I'd like some ideas on how to design the for-loop. Here is the simplified version of my current BNF:</p>
<pre><code>[...]
VarDecl. Statement ::= "var" Identifier "=" Expr ";"
ForLoop. Statement ::= "for" "(" Expr ";" Expr ";" Expr ")"
[...]
</code></pre>
<p>So as you can see, there are two statements in the example, variable declarations and for-loops. There are a bunch of different expressions, but <em>none</em> of the expressions are also statements.</p>
<p>The problem now is that this JavaScript code will not pass through the parser:</p>
<pre><code>for (var x = 3; [...]; [...])
</code></pre>
<p>This is because a variable declaration is not an expression.</p>
<p>What are your ideas on how to solve this? I can think of a few ways, but I don't want to get in the way of your own thoughts, so I won't mention them here.</p>
http://stackoverflow.com/questions/811604/javascript-for-loop-in-bnf/811687#8116870Answer by Marcus Lindblom for JavaScript for-loop in BNFMarcus Lindblom2009-05-01T14:46:04Z2009-05-01T14:46:04Z<p>You should be able to put any "simple" statement there (i.e vardecl, expression, void function call, etc) there. By simple I mean anything that isn't a compound statement (i.e. with additional curly-braces, such as if/else/for/function, etc).</p>
http://stackoverflow.com/questions/811604/javascript-for-loop-in-bnf/811709#8117091Answer by gimel for JavaScript for-loop in BNFgimel2009-05-01T14:51:02Z2009-05-01T14:51:02Z<p>There are a few examples over the net, in an <a href="http://www.antlr.org/grammar/1153976512034/ecmascriptA3.g" rel="nofollow">ANTLR ECMAScript grammar </a> you can find this structure:</p>
<pre><code>iterationStatement:
'do' statement 'while' LPAREN expression RPAREN SEMI
| 'while' LPAREN expression RPAREN statement
| 'for' LPAREN (
(expressionNoln)? SEMI (expression)? SEMI (expression)? RPAREN statement
| 'var' variableDeclarationListNoln SEMI (expression)? SEMI (expression)? RPAREN statement
| leftHandSideExpression 'in' expression RPAREN statement
| 'var' variableDeclarationNoln 'in' expression RPAREN statement
)
;
</code></pre>