active questions tagged grammar - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T04:56:25Z http://stackoverflow.com/feeds/tag/grammar http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1452729/antlr-grammar-for-expressions 0 ANTLR Grammar for expressions jameszhao00 2009-09-21T03:10:34Z 2009-11-30T21:52:37Z <p>I'm trying to implement a expression handling grammar (that deals with nested parenthesis and stuff). I have the following so far, but they can't deal with some cases (successful/failure cases appear after the following code block). Anyone know what's going on?</p> <p>Note: The <em>varname +=</em> and <em>varname =</em> stuff are just some additional AST generation helper stuff in XText. Don't worry about them for now.</p> <pre><code>... NilExpression returns Expression: 'nil'; FalseExpression returns Expression: 'false'; TrueExpression returns Expression: 'true'; NumberExpression returns Expression: value=Number; StringExpression returns Expression: value=STRING; //EllipsesExpression: '...'; //FunctionExpression: function=function; //don't allow random functions UnaryExpression: op=unop ('(' expr=Expression ')')|expr=Expression; BinaryExpression: 'or'? AndOp; //or op AndOp: 'and'? ComparisonOp; ComparisonOp: ('&gt;'|'&lt;'|'&gt;='|'&lt;='|'=='|'~=')? ConcatOp; ConcatOp: '..'? AddSubOp; AddSubOp: ('+' '-')? MultDivOp; MultDivOp: ('*' '/')? ExpOp; ExpOp: '^'? (('(' expr=Expression ')')|expr=Expression); ExprSideOne : Variable|NilExpression|FalseExpression|TrueExpression| NumberExpression|StringExpression|UnaryExpression; Expression: ( '(' expression1=ExprSideOne expression2+=BinaryExpression* ')' ) | ( expression1=ExprSideOne expression2+=BinaryExpression* ) ; ... </code></pre> <p>And here's the list of parses/fails:</p> <pre><code>c = ((b)); //fails c = ((a not b)); //fails c = b; //parses d = (b); //parses </code></pre> http://stackoverflow.com/questions/1803028/question-about-building-a-symbol-table-with-a-yacc-parser 0 Question about building a symbol table with a yacc parser Phenom 2009-11-26T11:00:40Z 2009-11-26T21:58:41Z <p>If my yacc parser encounters the following code:</p> <pre><code>int foo(int a, int b) </code></pre> <p>should it add int a and int b as attributes of foo? The way I have it now, it enters a and b as separate table entries.</p> http://stackoverflow.com/questions/1797873/tips-on-using-bison-graphfile-on-linux 1 Tips on Using Bison --graph=[file] on Linux Don Wakefield 2009-11-25T15:52:50Z 2009-11-25T16:49:55Z <p>Recently (about a month ago) I was trying to introduce new constructs to my company's in-house extension language, and struggling with a couple of reduce-reduce errors. While I eventually solved this problem, digging into the <em>y.output</em> file was no picnic.</p> <p>As an experiment, I tried using Bison's <em>--graph=&lt;file></em> option to output a <em>DOT</em> file (note that our standard build uses Byacc, not Bison). As I'm on a 'turnkey' Linux box, I didn't have a Graphviz installation and could not easily install from RPMs (working on Red Hat Enterprise Linux 4). Instead, I built it from source.</p> <p>As an initial experiment, I tried to run <em>dotty</em> with an output of Postscript. Now our internal language is your average home-grown, Turing-complete, dynamically typed scripting language, but I was unprepared for what followed. The <em>dotty</em> run took over four hours (2GHz dual core AMD64 box)! And when it was done, the graph that was rendered was not what I would call readable.</p> <p>So, quite simply, I'm looking for advice. Are there a set of switches which would improve the outcome over the 'default' approach I took? I'm looking for experience in</p> <ul> <li>optimizing 'render' time</li> <li>improving readability of the graph</li> <li>possible advice on better graphical viewers</li> </ul> http://stackoverflow.com/questions/1789322/why-does-my-yacc-program-not-recognize-function-declarations 0 Why does my yacc program not recognize function declarations? Phenom 2009-11-24T10:58:08Z 2009-11-25T09:24:55Z <p>I think my program should be able to recognize the following as a function declaration</p> <pre><code>int fn(int i) { int n; return; } </code></pre> <p>but it doesn't.</p> <p>Here's the relevant part of my yacc file</p> <pre><code>program : declaration_list ; declaration_list : declaration_list declaration | declaration ; declaration : var_declaration | fun_declaration | '$' { printTable();}; var_declaration : type_specifier ID ';' {$2-&gt;value = 0; $2-&gt;arraysize = 0;}; | type_specifier ID '[' NUM ']' ';' {$2-&gt;arraysize = $4;printf("Array size is %d", $2-&gt;arraysize);} ; type_specifier : INT | VOID ; fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); printf("Parameters: \n", $2-&gt;args); } ; params : param_list | VOID ; param_list : param_list ',' param | param ; param : type_specifier ID | type_specifier ID '[' ']' ; compound_stmt : '{' local_declarations statement_list '}' {printf("exiting scope\n"); } ; local_declarations : local_declarations var_declaration | /* empty */ ; statement_list : statement_list statement | /* empty */ ; statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; expression_stmt : expression ';' | ';' ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; iteration_stmt : WHILE '(' expression ')' statement ; return_stmt : RETURN ';' | RETURN expression ';' ; </code></pre> <p>Why does it not recognize it?</p> http://stackoverflow.com/questions/1781701/grammars-scala-parsing-combinators-and-orderless-sets 2 Grammars, Scala Parsing Combinators and Orderless Sets Brian Heylin 2009-11-23T08:03:05Z 2009-11-23T23:55:13Z <p>I'm writing an application that will take in various "command" strings. I've been looking at the Scala combinator library to tokenize the commands. I find in a lot of cases I want to say: "These tokens are an orderless set, and so they can appear in any order, and some might not appear".</p> <p>With my current knowledge of grammars I would have to define all combinations of sequences as such (pseudo grammar):</p> <pre><code>command = action~content action = alphanum content = (tokenA~tokenB~tokenC | tokenB~tokenC~tokenA | tokenC~tokenB~tokenA ....... ) </code></pre> <p>So my question is, considering tokenA-C are unique, is there a shorter way to define a set of any order using a grammar? </p> http://stackoverflow.com/questions/1744397/generating-an-xml-path-from-a-set-of-attributes 1 Generating an XML path from a set of attributes Eric Brown 2009-11-16T19:42:47Z 2009-11-20T03:33:13Z <p>I have a set of XML documents that all share the same schema. (They're SAPI grammars with semantic tags, if that matters.) I can use the documents to match text strings, returning a set of attributes with known values. </p> <p>My problem is that I'd like to take a set of attribute values and generate a string from the grammar that (when submitted to the grammar) would produce the same set of attribute values. A further complication is that different grammars have the tags in different order (the grammars are for different natural languages), so I can't do a straightforward tree walk.</p> <p>Does anybody have a good approach to this problem?</p> <p><strong>EDIT:</strong> Here's an example set of grammars:</p> <p>Grammar 1 (English):</p> <pre><code>&lt;GRAMMAR LANGID="409"&gt; &lt;DEFINE&gt; &lt;ID NAME="NUMBERS1THROUGH8_ID" VAL="6503" /&gt; &lt;ID NAME="NUMBERCOMMAND" VAL="-1"/&gt; &lt;ID NAME="NUMBER1" VAL="1"/&gt; &lt;ID NAME="NUMBER2" VAL="2"/&gt; &lt;ID NAME="NUMBER3" VAL="3"/&gt; &lt;ID NAME="NUMBER4" VAL="4"/&gt; &lt;ID NAME="NUMBER5" VAL="5"/&gt; &lt;ID NAME="NUMBER6" VAL="6"/&gt; &lt;ID NAME="NUMBER7" VAL="7"/&gt; &lt;ID NAME="NUMBER8" VAL="8"/&gt; &lt;ID NAME="NUMBER9" VAL="9"/&gt; &lt;/DEFINE&gt; &lt;RULE NAME="ChooseSynoynms"&gt; &lt;L&gt; &lt;P&gt;choose&lt;/P&gt; &lt;P&gt;number&lt;/P&gt; &lt;P&gt;select&lt;/P&gt; &lt;P&gt;click&lt;/P&gt; &lt;/L&gt; &lt;/RULE&gt; &lt;RULE NAME="NumberList"&gt; &lt;LN PROPNAME="numberCommand" PROPID="NUMBERCOMMAND"&gt; &lt;PN VAL="NUMBER1"&gt;one&lt;/PN&gt; &lt;PN VAL="NUMBER2"&gt;two&lt;/PN&gt; &lt;PN VAL="NUMBER3"&gt;three&lt;/PN&gt; &lt;PN VAL="NUMBER4"&gt;four&lt;/PN&gt; &lt;PN VAL="NUMBER5"&gt;five&lt;/PN&gt; &lt;PN VAL="NUMBER6"&gt;six&lt;/PN&gt; &lt;PN VAL="NUMBER7"&gt;seven&lt;/PN&gt; &lt;PN VAL="NUMBER8"&gt;eight&lt;/PN&gt; &lt;PN VAL="NUMBER9"&gt;nine&lt;/PN&gt; &lt;/LN&gt; &lt;/RULE&gt; &lt;RULE ID="NUMBERS1THROUGH8_ID" TOPLEVEL="INACTIVE"&gt; &lt;O %COMMAND_WEIGHT%&gt;&lt;RULEREF NAME="ChooseSynoynms"/&gt;&lt;/O&gt; &lt;RULEREF NAME="NumberList" /&gt; &lt;O&gt; &lt;P PROPNAME="ExplicitOK" VAL="1"&gt;ok&lt;/P&gt; &lt;/O&gt; &lt;/RULE&gt; &lt;/GRAMMAR&gt; </code></pre> <p>Grammar 2: (German)</p> <pre><code>&lt;GRAMMAR LANGID="409"&gt; &lt;DEFINE&gt; &lt;ID NAME="NUMBERS1THROUGH8_ID" VAL="6503" /&gt; &lt;ID NAME="NUMBERCOMMAND" VAL="-1"/&gt; &lt;ID NAME="NUMBER1" VAL="1"/&gt; &lt;ID NAME="NUMBER2" VAL="2"/&gt; &lt;ID NAME="NUMBER3" VAL="3"/&gt; &lt;ID NAME="NUMBER4" VAL="4"/&gt; &lt;ID NAME="NUMBER5" VAL="5"/&gt; &lt;ID NAME="NUMBER6" VAL="6"/&gt; &lt;ID NAME="NUMBER7" VAL="7"/&gt; &lt;ID NAME="NUMBER8" VAL="8"/&gt; &lt;ID NAME="NUMBER9" VAL="9"/&gt; &lt;/DEFINE&gt; &lt;RULE NAME="ChooseSynoynms"&gt; &lt;L&gt; &lt;P&gt;wahlen&lt;/P&gt; &lt;P&gt;Nummer&lt;/P&gt; &lt;P&gt;auswahlen&lt;/P&gt; &lt;P&gt;klicken&lt;/P&gt; &lt;/L&gt; &lt;/RULE&gt; &lt;RULE NAME="NumberList"&gt; &lt;LN PROPNAME="numberCommand" PROPID="NUMBERCOMMAND"&gt; &lt;PN VAL="NUMBER1"&gt;eins&lt;/PN&gt; &lt;PN VAL="NUMBER2"&gt;zwei&lt;/PN&gt; &lt;PN VAL="NUMBER3"&gt;drei&lt;/PN&gt; &lt;PN VAL="NUMBER4"&gt;vier&lt;/PN&gt; &lt;PN VAL="NUMBER5"&gt;funf&lt;/PN&gt; &lt;PN VAL="NUMBER6"&gt;sechs&lt;/PN&gt; &lt;PN VAL="NUMBER7"&gt;sieben&lt;/PN&gt; &lt;PN VAL="NUMBER8"&gt;acht&lt;/PN&gt; &lt;PN VAL="NUMBER9"&gt;neun&lt;/PN&gt; &lt;/LN&gt; &lt;/RULE&gt; &lt;RULE ID="NUMBERS1THROUGH8_ID" TOPLEVEL="INACTIVE"&gt; &lt;P&gt;&lt;O&gt;auf&lt;/O&gt;&lt;/P&gt; &lt;RULEREF NAME="NumberList"/&gt; &lt;O&gt; &lt;P PROPNAME="ExplicitOK" VAL="1"&gt;OK&lt;/P&gt; &lt;/O&gt; &lt;P&gt;&lt;RULEREF NAME="ChooseSynoynms"/&gt;&lt;/P&gt; &lt;/RULE&gt; &lt;/GRAMMAR&gt; </code></pre> <p>What I want to do is to specify "NumberCommand = 5" and get "choose 5" from the English grammar, and "funf klicken" from the German grammar.</p> http://stackoverflow.com/questions/202750/is-there-a-human-readable-programming-language 16 Is there a human readable programming language? Scuffia 2008-10-14T20:51:13Z 2009-11-18T23:18:20Z <p>I mean, is there a coded language with human style coding? For example:</p> <pre><code>Create an object called MyVar and initialize it to 10; Take MyVar and call MyMethod() with parameters. . . </code></pre> <p>I know it's not so useful, but it can be interesting to create such a grammar.</p> http://stackoverflow.com/questions/1754785/is-there-a-shift-reduce-error-in-this-yacc-code 0 Is there a shift/reduce error in this yacc code? Phenom 2009-11-18T09:40:43Z 2009-11-18T10:35:52Z <p>I'm getting a message from yacc saying that there is a shift/reduce conflict. I think it's coming from this part of the yacc file.</p> <pre><code>statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; expression : var '=' expression | simple_expression ; </code></pre> <p>Can you see a conflict? How can it be fixed?</p> http://stackoverflow.com/questions/1752185/whats-wrong-with-my-grammar 0 What's wrong with my grammar Phenom 2009-11-17T22:05:58Z 2009-11-17T22:50:48Z <p>I try to input the following into my yacc parser:</p> <pre><code>int main(void) { return; } </code></pre> <p>It looks valid to me according to what's defined in the yacc file, but I get a "syntax error" message after the return. Why is that?</p> <p>The yacc file:</p> <pre><code>/* C-Minus BNF Grammar */ %{ #include "parser.h" #include &lt;string.h&gt; %} %union { int intval; struct symtab *symp; } %token ELSE %token IF %token INT %token RETURN %token VOID %token WHILE %token &lt;symp&gt; ID %token &lt;intval&gt; NUM %token LTE %token GTE %token EQUAL %token NOTEQUAL type &lt;string&gt; paramlist %% program : declaration_list ; declaration_list : declaration_list declaration | declaration ; declaration : var_declaration | fun_declaration | '$' { printTable();}; var_declaration : type_specifier ID ';' {$2-&gt;value = 0; $2-&gt;arraysize = 0;}; | type_specifier ID '[' NUM ']' ';' {$2-&gt;arraysize = $4;printf("Array size is %d", $2-&gt;arraysize);} ; type_specifier : INT | VOID ; fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); $2-&gt;args = 'a'; printf("Parameters: \n", $2-&gt;args); } ; params : param_list | VOID ; param_list : param_list ',' param | param ; param : type_specifier ID | type_specifier ID '[' ']' ; compound_stmt : '{' local_declarations statement_list '}' {printf("exiting scope\n"); } ; local_declarations : local_declarations var_declaration | /* empty */ ; statement_list : statement_list statement | /* empty */ ; statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; expression_stmt : expression ';' | ';' ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; iteration_stmt : WHILE '(' expression ')' statement ; return_stmt : RETURN ';' | RETURN expression ';' ; expression : var '=' expression | simple_expression ; var : ID | ID '[' expression ']' ; simple_expression : additive_expression relop additive_expression | additive_expression ; relop : LTE | '&lt;' | '&gt;' | GTE | EQUAL | NOTEQUAL ; additive_expression : additive_expression addop term | term ; addop : '+' | '-' ; term : term mulop factor | factor ; mulop : '*' | '/' ; factor : '(' expression ')' | var | call | NUM ; call : ID '(' args ')' ; args : arg_list | /* empty */ ; arg_list : arg_list ',' expression | expression ; %% /* look up a symbol table entry, add if not present */ struct symtab *symlook(char *s) { printf("Putting %s into the symbol table\n", s); //char *p; struct symtab *sp; for(sp = symtab; sp &lt; &amp;symtab[NSYMS]; sp++) { /* is it already here? */ if(sp-&gt;name &amp;&amp; !strcmp(sp-&gt;name, s)) { yyerror("already in symbol table\n"); exit(1); return sp; } if(!sp-&gt;name) { /* is it free */ sp-&gt;name = strdup(s); return sp; } /* otherwise continue to next */ } yyerror("Too many symbols"); exit(1); /* cannot continue */ } /* symlook */ yyerror(char *s) { printf( "yyerror: %s\n", s); } printTable() { printf("Print out the symbol table:\n\n"); struct symtab *sp; for(sp = symtab; sp &lt; &amp;symtab[NSYMS]; sp++) { printf("name: %s\t" "args: %s\t" "value %d\t" "arraysize %d\n", sp-&gt;name, sp-&gt;args, sp-&gt;value, sp-&gt;arraysize); } } </code></pre> http://stackoverflow.com/questions/1751877/could-you-give-me-a-correctly-formatted-program-example-for-this-grammar -1 Could you give me a correctly formatted program example for this grammar? [closed] Phenom 2009-11-17T21:19:52Z 2009-11-17T21:24:40Z <p>The lex file:</p> <pre><code>/* C-Minus BNF Grammar */ %{ #include "parser.h" #include &lt;string.h&gt; %} %union { int intval; struct symtab *symp; } %token ELSE %token IF %token INT %token RETURN %token VOID %token WHILE %token &lt;symp&gt; ID %token &lt;intval&gt; NUM %token LTE %token GTE %token EQUAL %token NOTEQUAL type &lt;string&gt; paramlist %% program : declaration_list ; declaration_list : declaration_list declaration | declaration ; declaration : var_declaration | fun_declaration ; var_declaration : type_specifier ID ';' {$2-&gt;value = 0; $2-&gt;arraysize = 0;}; | type_specifier ID '[' NUM ']' ';' {$2-&gt;arraysize = $4;printf("Array size is %d", $2-&gt;arraysize);} ; type_specifier : INT | VOID ; fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); $2-&gt;args = 'a'; printf("Parameters: \n", $2-&gt;args); } ; params : param_list | VOID ; param_list : param_list ',' param | param ; param : type_specifier ID | type_specifier ID '[' ']' ; compound_stmt : '{' local_declarations statement_list '}' {printf("exiting scope\n"); } ; local_declarations : local_declarations var_declaration | /* empty */ ; statement_list : statement_list statement | /* empty */ ; statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; expression_stmt : expression ';' | ';' ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; iteration_stmt : WHILE '(' expression ')' statement ; return_stmt : RETURN ';' | RETURN expression ';' ; expression : var '=' expression | simple_expression ; var : ID | ID '[' expression ']' ; simple_expression : additive_expression relop additive_expression | additive_expression ; relop : LTE | '&lt;' | '&gt;' | GTE | EQUAL | NOTEQUAL ; additive_expression : additive_expression addop term | term ; addop : '+' | '-' ; term : term mulop factor | factor ; mulop : '*' | '/' ; factor : '(' expression ')' | var | call | NUM ; call : ID '(' args ')' ; args : arg_list | /* empty */ ; arg_list : arg_list ',' expression | expression ; %% /* look up a symbol table entry, add if not present */ struct symtab *symlook(char *s) { printf("Putting %s into the symbol table\n", s); char *p; struct symtab *sp; for(sp = symtab; sp &lt; &amp;symtab[NSYMS]; sp++) { /* is it already here? */ if(sp-&gt;name &amp;&amp; !strcmp(sp-&gt;name, s)) { yyerror("already in symbol table\n"); exit(1); return sp; } if(!sp-&gt;name) { /* is it free */ sp-&gt;name = strdup(s); return sp; } /* otherwise continue to next */ } yyerror("Too many symbols"); exit(1); /* cannot continue */ } /* symlook */ yyerror(char *s) { printf( "yyerror: %s\n", s); } </code></pre> http://stackoverflow.com/questions/1748466/how-to-return-literals-from-flex-to-yacc 1 How to return literals from flex to yacc? Phenom 2009-11-17T12:17:12Z 2009-11-17T14:23:25Z <p>In my yacc file I have things like the following:</p> <pre><code>var_declaration : type_specifier ID ';' | type_specifier ID '[' NUM ']' ';' ; type_specifier : INT | VOID ; </code></pre> <p>ID, NUM, INT, and VOID are tokens that get returned from flex, so yacc has no problems recognizing them. The problem is that in the above there are things like '[' and ';'. When these are recognized by flex, what should be returned to yacc?</p> http://stackoverflow.com/questions/1749161/are-there-any-programs-to-help-with-reading-the-grammar-in-a-yacc-file 0 Are there any programs to help with reading the grammar in a yacc file? Phenom 2009-11-17T14:13:26Z 2009-11-17T14:13:26Z <p>I'm trying to figure out what legal statements I can make by looking at the grammar in a yacc file, but it's kind of hard. Are there any programs to make this sort of thing easier?</p> http://stackoverflow.com/questions/1749009/the-program-i-made-with-flex-yacc-doesnt-always-recognize-identifiers 0 The program I made with flex/yacc doesn't always recognize identifiers Phenom 2009-11-17T13:49:22Z 2009-11-17T13:57:27Z <p>I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I start out with an identifier, I automatically get a syntax error. However, I noticed that using an identifier won't generate an error if it is preceded by 'int'. If a is an identifier, then if I type 'int a;' this is ok. But if I type 'a = 3' I get an error. Just typing a by itself will generate an error.</p> <p>The lex file:</p> <pre><code>%{ #include &lt;stdlib.h&gt; #include &lt;ctype.h&gt; #include &lt;string.h&gt; #include "y.tab.h" %} else else if if int int return return void void while while id [a-zA-Z]+ num [0-9]+ lte &lt;= gte &gt;= equal == notequal != %% {else} { return ELSE; } {if} { return IF; } {int} { return INT; } {return} { return RETURN; } {void} { return VOID; } {while} { return WHILE; } {id} { return ID; } {num} { return NUM; } {lte} { return LTE; } {gte} { return GTE; } {equal} { return EQUAL; } {notequal} { return NOTEQUAL; } [\[\];] { return yytext[0];} %% </code></pre> <p>The yacc file</p> <pre><code>/* C-Minus BNF Grammar */ %token ELSE %token IF %token INT %token RETURN %token VOID %token WHILE %token ID %token NUM %token LTE %token GTE %token EQUAL %token NOTEQUAL %% program : declaration_list ; declaration_list : declaration_list declaration | declaration ; declaration : var_declaration | fun_declaration ; var_declaration : type_specifier ID ';' | type_specifier ID '[' NUM ']' ';' ; type_specifier : INT | VOID ; fun_declaration : type_specifier ID '(' params ')' compound_stmt ; params : param_list | VOID ; param_list : param_list ',' param | param ; param : type_specifier ID | type_specifier ID '[' ']' ; compound_stmt : '{' local_declarations statement_list '}' ; local_declarations : local_declarations var_declaration | /* empty */ ; statement_list : statement_list statement | /* empty */ ; statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; expression_stmt : expression ';' | ';' ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; iteration_stmt : WHILE '(' expression ')' statement ; return_stmt : RETURN ';' | RETURN expression ';' ; expression : var '=' expression | simple_expression ; var : ID | ID '[' expression ']' ; simple_expression : additive_expression relop additive_expression | additive_expression ; relop : LTE | '&lt;' | '&gt;' | GTE | EQUAL | NOTEQUAL ; additive_expression : additive_expression addop term | term ; addop : '+' | '-' ; term : term mulop factor | factor ; mulop : '*' | '/' ; factor : '(' expression ')' | var | call | NUM ; call : ID '(' args ')' ; args : arg_list | /* empty */ ; arg_list : arg_list ',' expression | expression ; </code></pre> http://stackoverflow.com/questions/1748381/why-do-i-get-a-syntax-error-in-my-program-made-with-flex-and-yacc 0 Why do I get a syntax error in my program made with flex and yacc? Phenom 2009-11-17T11:56:50Z 2009-11-17T12:04:29Z <p>I made a program that is supposed to recognize a simple grammar. When I input what I think is supposed to be a valid statement, I get an error. Specifically, if I type</p> <p>int a;</p> <p>int b;</p> <p>it doesn't work. After I type int a; the program echoes ; for some reason. Then when I type int b; I get syntax error.</p> <p>The lex file:</p> <pre><code>%{ #include &lt;stdlib.h&gt; #include &lt;ctype.h&gt; #include &lt;string.h&gt; #include "y.tab.h" %} else ELSE if IF int INT|int return RETURN void VOID while WHILE id [a-zA-Z]* num [0-9]* lte &lt;= gte &gt;= equal == notequal != %% {else} { return ELSE; } {if} { return IF; } {int} { return INT; } {return} { return RETURN; } {void} { return VOID; } {while} { return WHILE; } {id} { return ID; } {num} { return NUM; } {lte} { return LTE; } {gte} { return GTE; } {equal} { return EQUAL; } {notequal} { return NOTEQUAL; } %% </code></pre> <p>The yacc file:</p> <pre><code>/* C-Minus BNF Grammar */ %token ELSE %token IF %token INT %token RETURN %token VOID %token WHILE %token ID %token NUM %token LTE %token GTE %token EQUAL %token NOTEQUAL %% program : declaration_list ; declaration_list : declaration_list declaration | declaration ; declaration : var_declaration | fun_declaration ; var_declaration : type_specifier ID ';' | type_specifier ID '[' NUM ']' ';' ; type_specifier : INT | VOID ; fun_declaration : type_specifier ID '(' params ')' compound_stmt ; params : param_list | VOID ; param_list : param_list ',' param | param ; param : type_specifier ID | type_specifier ID '[' ']' ; compound_stmt : '{' local_declarations statement_list '}' ; local_declarations : local_declarations var_declaration | /* empty */ ; statement_list : statement_list statement | /* empty */ ; statement : expression_stmt | compound_stmt | selection_stmt | iteration_stmt | return_stmt ; expression_stmt : expression ';' | ';' ; selection_stmt : IF '(' expression ')' statement | IF '(' expression ')' statement ELSE statement ; iteration_stmt : WHILE '(' expression ')' statement ; return_stmt : RETURN ';' | RETURN expression ';' ; expression : var '=' expression | simple_expression ; var : ID | ID '[' expression ']' ; simple_expression : additive_expression relop additive_expression | additive_expression ; relop : LTE | '&lt;' | '&gt;' | GTE | EQUAL | NOTEQUAL ; additive_expression : additive_expression addop term | term ; addop : '+' | '-' ; term : term mulop factor | factor ; mulop : '*' | '/' ; factor : '(' expression ')' | var | call | NUM ; call : ID '(' args ')' ; args : arg_list | /* empty */ ; arg_list : arg_list ',' expression | expression ; </code></pre> http://stackoverflow.com/questions/1712274/why-do-a-lot-of-programming-languages-put-the-type-after-the-variable-name 4 Why do a lot of programming languages put the type *after* the variable name? Jason Baker 2009-11-11T00:41:48Z 2009-11-16T20:22:51Z <p>I just came across <a href="http://golang.org/doc/go%5Flang%5Ffaq.html#declarations%5Fbackwards" rel="nofollow">this question</a> in the Go FAQ, and it reminded me of something that's been bugging me for a while. Unfortunately, I don't really see what the answer is getting at.</p> <p>It seems like almost every non C-like language puts the type after the variable name, like so:</p> <pre><code>var : int </code></pre> <p>Just out of sheer curiosity, why is this? Are there advantages to choosing one or the other?</p> http://stackoverflow.com/questions/1723275/tolerating-malformed-statements-with-antlr-e-g-for-code-completion 0 Tolerating malformed statements with ANTLR (e.g., for code-completion) CapnNefarious 2009-11-12T15:57:47Z 2009-11-12T17:37:40Z <p>I have an ANTLR grammar for a simple DSL, and everything works swimmingly when there are no syntax errors. Now, however, I need to support an auto-completion mechanism, where I need to get possible completions from my tree grammars that perform basic type-checking on attributes, functions, etc.</p> <p>The problem is, ANTLR isn't reporting syntax errors at the local <code>statement</code> level, but farther up the parse tree, e.g., at the <code>program</code> or <code>function</code> level. Hence, instead of an AST that looks like </p> <pre><code> program | function / | \ / | \ stat hosed stat </code></pre> <p>I get garbage nodes across the top of the tree, as a failure to match the <code>statement</code> rule "bubbles up" and prevents the <code>function</code> rule from matching. </p> <p><strong>Is there a way to write a rule that has a "catch-all" clause to eat unexpected tokens?</strong></p> <p>I'm thinking of something like:</p> <pre><code>statement : var_declaration | if_statement | for_loop | garbage ; garbage : /* Match unexpected tokens, etc. (not actual statements, or closing parens, braces, etc.). Maybe just consume one input token and let the parser try again? */ ; </code></pre> <p>There may be any number of garbage nodes in the AST, but everything before (and preferably after) the garbage should be sane. </p> <p>I'd appreciate any hints/suggestions/pointers/etc. I'm using ANTLR v3, Java target.</p> http://stackoverflow.com/questions/1694511/whats-the-matter-with-this-grammar 1 What's the matter with this Grammar? Kivin 2009-11-07T21:36:25Z 2009-11-12T03:54:05Z <pre><code>grammar Test; IDHEAD: ('a'..'z' | 'A'..'Z' | '_'); IDTAIL: (IDHEAD | '0'..'9'); ID: (IDHEAD IDTAIL*); fragment TYPE: ('text' | 'number' | 'bool'); define: 'define' ID 'as' TYPE; </code></pre> <p>The problem is that the <code>define</code> rule matches the tokens <code>define</code>, <code>ID</code>, <code>as</code>, but wont match <code>TYPE</code>. I'm yielding a MissingTokenException.</p> <p>If I inline the TYPE, as follows, it works as I'm intending:</p> <pre><code>grammar Test; IDHEAD: ('a'..'z' | 'A'..'Z' | '_'); IDTAIL: (IDHEAD | '0'..'9'); ID: (IDHEAD IDTAIL*); fragment TYPE: ('text' | 'number' | 'bool'); define: 'define' ID 'as' ('text' | 'number' | 'bool'); </code></pre> <p><hr></p> <p>Update: The <code>fragment</code> keyword was added in an effort to resolve another conflict: <code>The following token definitions can never be matched because prior tokens match the same input: TYPE</code>.</p> http://stackoverflow.com/questions/1696744/regexp-to-exclude-101-and-110 3 Regexp to exclude 101 and 110. Absolute0 2009-11-08T14:44:00Z 2009-11-09T16:33:28Z <p>What is a regexp that accepts everything over the language {0,1} but has no substring 110 or 101?</p> <p>Accept:</p> <ul> <li>111111</li> <li>000011111</li> <li>100001000001001</li> <li>010</li> <li>1</li> </ul> <p>Reject:</p> <ul> <li>100110</li> <li>010100</li> <li>123</li> </ul> <p><em>Edit:</em> Per comments on answers below, this question is asking for a formal regular expression.</p> http://stackoverflow.com/questions/1697363/left-recursion-in-grammar-results-in-conflicts 3 Left Recursion in Grammar Results in Conflicts Kyle Brandt 2009-11-08T18:01:45Z 2009-11-08T23:53:12Z <p>Throughout a Bison grammar I am using right recursion, and I have read that left recursion is better because it doesn't have to build the whole stack first.</p> <p>However, when I try to switch to left recursion on any of them, I always end up with a lot of conflicts, and I am not seeing why.</p> <p>Can anyone show me a generic example of where using left recursion instead of right causes a conflict (when the right recursion doesn't cause a conflict). Then what needs to be done when switching to left to correct such a conflict. I think a fundamental example will help me more than just a correction of my own grammar.</p> <p><strong>Edit:</strong><br> But I guess I should include a particular example anyways, since my understand is a little less than complete :-) Changing 'list separator command' to 'command separator list' resolves the conflict.</p> <pre><code>State 9 conflicts: 3 shift/reduce Grammar 0 $accept: input $end 1 input: error NEWLINE 2 | input NEWLINE 3 | input list NEWLINE 4 | /* empty */ 5 list: command 6 | command separator 7 | list separator command 8 separator: SEMI 9 | L_OR 10 | L_AND 11 command: variable_assignment 12 | external_w_redir 13 | external_w_redir AMP 14 | pipeline 15 | pipeline AMP ... state 9 5 list: command . 6 | command . separator SEMI shift, and go to state 18 L_AND shift, and go to state 19 L_OR shift, and go to state 20 SEMI [reduce using rule 5 (list)] L_AND [reduce using rule 5 (list)] L_OR [reduce using rule 5 (list)] $default reduce using rule 5 (list) separator go to state 22 </code></pre> http://stackoverflow.com/questions/1678653/boost-spirit-and-forward-declarations-issues 2 Boost spirit and forward declarations issues varnie 2009-11-05T06:14:10Z 2009-11-05T12:41:16Z <p>Could someone please give me some advice/ideas about how to deal with the situations when it's needed to have a look at further declarations to be able to make correct semantic actions on current moment? For example, it is a well-known occurrence when someone writes an interpreter/compiler of some programming language which doesn't support "forward declarations". Let's have an example: </p> <pre><code>foo(123);//&lt;-- our parser targets here. we estimate we have a function // invocation, but we have no idea about foo declaration/prototype, // so we can't be sure that "foo" takes one integer argument. void foo(int i){ //... } </code></pre> <p>It is pretty clear we have to have at least two passes. Firstly we parse all function declarations and get all the needed information such as: the amount arguments the function takes, their types and then we are able to deal with function invocations and resolving the difficulties as above. If we go this way we will must do all these passes using some <a href="http://en.wikipedia.org/wiki/Abstract%5Fsyntax%5Ftree" rel="nofollow">AST</a> traversing mechanisms/visitors. In this case we have to deal with AST traversing/applying visitors and we must say "good bye" to the all the beauty of phoenix constructions integrated directly in our parsers.</p> <p>How would you deal with this? </p> http://stackoverflow.com/questions/1659126/how-to-determine-the-first-set-of-e-in-this-grammar 0 How to determine the FIRST set of E in this grammar ? meoconbatchut 2009-11-02T02:05:13Z 2009-11-02T10:17:37Z <p>I wonder how to determine the <code>FIRST</code> set of E with grammar:</p> <pre><code>E -&gt; XYE | e X -&gt; x Y -&gt; y </code></pre> <p>Can anyone give me some direction?</p> http://stackoverflow.com/questions/1584247/parsing-grammars-using-ocaml 3 Parsing grammars using OCaml DV 2009-10-18T07:23:28Z 2009-10-27T17:21:50Z <p>Hi,</p> <p>I have a task to write a (toy) parser for a (toy) grammar using OCaml and not sure how to start (and proceed with) this problem.</p> <p>Here's a sample Awk grammar:</p> <pre><code>type ('nonterm, 'term) symbol = N of 'nonterm | T of 'term;; type awksub_nonterminals = Expr | Term | Lvalue | Incrop | Binop | Num;; let awksub_grammar = (Expr, function | Expr -&gt; [[N Term; N Binop; N Expr]; [N Term]] | Term -&gt; [[N Num]; [N Lvalue]; [N Incrop; N Lvalue]; [N Lvalue; N Incrop]; [T"("; N Expr; T")"]] | Lvalue -&gt; [[T"$"; N Expr]] | Incrop -&gt; [[T"++"]; [T"--"]] | Binop -&gt; [[T"+"]; [T"-"]] | Num -&gt; [[T"0"]; [T"1"]; [T"2"]; [T"3"]; [T"4"]; [T"5"]; [T"6"]; [T"7"]; [T"8"]; [T"9"]]);; </code></pre> <p>And here's some fragments to parse:</p> <pre><code>let frag1 = ["4"; "+"; "3"];; let frag2 = ["9"; "+"; "$"; "1"; "+"];; </code></pre> <p>What I'm looking for is a rulelist that is the result of the parsing a fragment, such as this one for frag1 ["4"; "+"; "3"]:</p> <pre><code> [(Expr, [N Term; N Binop; N Expr]); (Term, [N Num]); (Num, [T "3"]); (Binop, [T "+"]); (Expr, [N Term]); (Term, [N Num]); (Num, [T "4"])] </code></pre> <p>The restriction is to not use any OCaml libraries other than List... :/</p> http://stackoverflow.com/questions/1620930/elimination-left-recursion-for-e-eeee-id 2 Elimination left recursion for E := EE+|EE-|id Absolute0 2009-10-25T13:32:03Z 2009-10-25T13:48:21Z <p>How to eliminate left recursion for the following grammar?</p> <pre><code>E := EE+|EE-|id </code></pre> <p>Using the common procedure:</p> <pre><code>A := Aa|b </code></pre> <p>translates to:</p> <pre><code>A := b|A' A' := ϵ| Aa </code></pre> <p>Applying this to the original grammar we get:</p> <pre><code>A = E, a = (E+|E-) and b = id </code></pre> <p>Therefore:</p> <pre><code>E := id|E' E' := ϵ|E(E+|E-) </code></pre> <p>But this grammar seems incorrect because</p> <pre><code>ϵE+ -&gt; ϵ id + </code></pre> <p>would be valid but that is an incorrect postfix expression.</p> http://stackoverflow.com/questions/1561515/where-can-i-find-c-3-0-grammar 6 Where can I find C# 3.0 grammar? Mehrdad Afshari 2009-10-13T16:52:57Z 2009-10-14T06:52:46Z <p>I'm planning to write a C# 3.0 compiler in C#. Where can I get the grammar for parser generation?</p> <p>Preferably one that works with ANTLR v3 without modification.</p> http://stackoverflow.com/questions/1497588/where-is-the-textmate-language-parser 1 Where is the TextMate Language Parser? viatropos 2009-09-30T11:34:45Z 2009-09-30T11:53:41Z <p>Does anyone know where the code TextMate uses for syntax highlighting is burried? If not, do you know how they parse their language syntaxes, or how you would parse their language syntaxes?</p> <p>That would be awesome to look into.</p> <p>Thanks! Lance</p> http://stackoverflow.com/questions/838083/what-is-the-best-book-for-programming-language-theory 5 What is the best book for Programming Language Theory? Simucal 2009-05-08T03:17:58Z 2009-09-29T20:09:34Z <p>What is a good book that covers the topics of grammars (<a href="http://en.wikipedia.org/wiki/Context-free%5Fgrammar" rel="nofollow">context-free</a> and <a href="http://en.wikipedia.org/wiki/Context-sensitive%5Fgrammar" rel="nofollow">context-sensitive</a>) and their notations (<a href="http://en.wikipedia.org/wiki/Extended%5FBackus%E2%80%93Naur%5Fform" rel="nofollow">EBNF</a>, <a href="http://en.wikipedia.org/wiki/Backus%E2%80%93Naur%5FForm" rel="nofollow">BNF</a>, etc), syntax, type and programming language theory, etc?</p> <p>I'm not really digging the textbook we used at my school for our "Programming Languages" class and I'm looking to supplement some of the topics we covered with a different text. </p> <p>If you have had good experience with a PL theory book that covers these topics please suggest it!</p> http://stackoverflow.com/questions/1446177/parser-lexer-ignoring-incomplete-grammar-rules 3 Parser/Lexer ignoring incomplete grammar rules nlucaroni 2009-09-18T18:27:17Z 2009-09-18T19:53:07Z <p>I have a parser and lexer written in ocamlyacc and ocamllex. If the file to parse ends prematurely, as in I forget a semicolon at the end of a line, the application doesn't raise a syntax error. I realize it's because I'm raising and catching EOF and that is making the lexer ignore the unfinished rule, but how <em>should</em> I be doing this to raise a syntax error?</p> <p>Here is my current parser (simplified), </p> <pre><code>%{ let parse_error s = Printf.ksprinf failwith "ERROR: %s" s %} %token COLON %token SEPARATOR %token SEMICOLON %token &lt;string&gt; FLOAT %token &lt;string&gt; INT %token &lt;string&gt; LABEL %type &lt;Conf.config&gt; command %start command %% command: | label SEPARATOR data SEMICOLON { Conf.Pair ($1,$3) } | label SEPARATOR data_list { Conf.List ($1,$3) } | label SEMICOLON { Conf.Single ($1) } label : | LABEL { Conf.Label $1 } data : | label { $1 } | INT { Conf.Integer $1 } | FLOAT { Conf.Float $1 } data_list : | star_data COMMA star_data data_list_ending { $1 :: $3 :: $4 } data_list_ending: | COMMA star_data data_list_ending { $2 :: $3 } | SEMICOLON { [] } </code></pre> <p>and lexxer (simplified),</p> <pre><code>{ open ConfParser exception Eof } rule token = parse | ['\t' ' ' '\n' '\010' '\013' '\012'] { token lexbuf } | ['0'-'9']+ ['.'] ['0'-'9']* ('e' ['-' '+']? ['0'-'9']+)? as n { FLOAT n } | ['0'-'9']+ as n { INT n } | '#' { comment lexbuf } | ';' { SEMICOLON } | ['=' ':'] { SEPARATOR } | ',' { COMMA } | ['_' 'a'-'z' 'A'-'Z']([' ']?['a'-'z' 'A'-'Z' '0'-'9' '_' '-' '.'])* as w { LABEL w } | eof { raise Eof } and comment = parse | ['#' '\n'] { token lexbuf } | _ { comment lexbuf } </code></pre> <p>example input file,</p> <pre><code>one = two, three, one-hundred; single label; list : command, missing, a, semicolon </code></pre> <p>One solution, is to add a recursive call in the command rule to itself at the end, and adding an empty rule, all of which build a list to return to the main program. I think I maybe interpreting Eof as a expectation, and ending condition, rather then an error in the lexer, is this correct?</p> http://stackoverflow.com/questions/520818/learning-treetop 1 Learning Treetop cmartin 2009-02-06T15:51:44Z 2009-09-11T17:16:27Z <p>I'm trying to teach myself Ruby's Treetop grammar generator. I am finding that not only is the documentation woefully sparse for the "best" one out there, but that it doesn't seem to work as intuitively as I'd hoped.</p> <p>On a high level, I'd really love a better tutorial than the on-site docs or the video, if there is one.</p> <p>On a lower level, here's a grammar I cannot get to work at all:</p> <pre><code>grammar SimpleTest rule num (float / integer) end rule float ( (( '+' / '-')? plain_digits '.' plain_digits) / (( '+' / '-')? plain_digits ('E' / 'e') plain_digits ) / (( '+' / '-')? plain_digits '.') / (( '+' / '-')? '.' plain_digits) ) { def eval text_value.to_f end } end rule integer (( '+' / '-' )? plain_digits) { def eval text_value.to_i end } end rule plain_digits [0-9] [0-9]* end end </code></pre> <p>When I load it and run some assertions in a very simple test object, I find:</p> <pre><code>assert_equal @parser.parse('3.14').eval,3.14 </code></pre> <p>Works fine, while</p> <pre><code>assert_equal @parser.parse('3').eval,3 </code></pre> <p>raises the error: NoMethodError: private method `eval' called for #</p> <p>If I reverse integer and float on the description, both integers and floats give me this error. I think this may be related to limited lookahead, but I cannot find any information in any of the docs to even cover the idea of evaluating in the "or" context</p> <p>A bit more info that may help. Here's pp information for both those parse() blocks.</p> <p>The float:</p> <pre><code>SyntaxNode+Float4+Float0 offset=0, "3.14" (eval,plain_digits): SyntaxNode offset=0, "" SyntaxNode+PlainDigits0 offset=0, "3": SyntaxNode offset=0, "3" SyntaxNode offset=1, "" SyntaxNode offset=1, "." SyntaxNode+PlainDigits0 offset=2, "14": SyntaxNode offset=2, "1" SyntaxNode offset=3, "4": SyntaxNode offset=3, "4" </code></pre> <p>The Integer... note that it seems to have been defined to follow the integer rule, but not caught the eval() method:</p> <pre><code>SyntaxNode+Integer0 offset=0, "3" (plain_digits): SyntaxNode offset=0, "" SyntaxNode+PlainDigits0 offset=0, "3": SyntaxNode offset=0, "3" SyntaxNode offset=1, "" </code></pre> <p>Update:</p> <p>I got my particular problem working, but I have no clue why:</p> <pre><code> rule integer ( '+' / '-' )? plain_digits { def eval text_value.to_i end } end </code></pre> <p>This makes no sense with the docs that are present, but just removing the extra parentheses made the match include the Integer1 class as well as Integer0. Integer1 is apparently the class holding the eval() method. I have no idea why this is the case.</p> <p>I'm still looking for more info about treetop.</p> http://stackoverflow.com/questions/307528/login-or-log-in 7 Login or Log in? nickf 2008-11-21T01:26:00Z 2009-09-02T22:26:47Z <p>Is there accepted terminology for the process of logging in?</p> <p>As a verb, would you say "Go to the website and log in", or "Go to the website and login"?</p> <p>As an adjective, would you say "Click on the Log in form", or "Click on the Login form"?</p> <p>Does the same apply to logging out? eg: logout?</p> http://stackoverflow.com/questions/1357664/why-cant-i-assign-b-c-to-a-in-perl 6 Why can't I assign @b || @c to @a in Perl? JB 2009-08-31T14:12:34Z 2009-09-02T12:25:37Z <p>I'd like to perform some convoluted variation of the <code>@a = @b || @c</code> assignment, with the intent of taking <code>@b</code> if non-empty (hence true in a boolean sense), <code>@c</code> otherwise. The documentation explicitely tells me I can't. (And it's right about the fact, too!)</p> <blockquote> <p>The "||", "//" and "&amp;&amp;" operators return the last value evaluated (unlike C's "||" and "&amp;&amp;", which return 0 or 1). </p> <p>[...]</p> <p>In particular, this means that you shouldn't use this for selecting between two aggregates for assignment:</p> <pre><code>@a = @b || @c; # this is wrong @a = scalar(@b) || @c; # really meant this @a = @b ? @b : @c; # this works fine, though </code></pre> </blockquote> <p>Unfortunately, it doesn't really tell me why.</p> <p>What I expected would happen was this:</p> <ul> <li><code>@a =</code> is an array assignment, inducing list context on the right hand side.</li> <li><code>@b || @c</code> is the right hand side, to be evaluated in list context.</li> <li><code>||</code> is C-style short-circuit logical or. It evaluates left to right (if needed) and propagates context.</li> <li><code>@b</code> is evaluated in list context. If true (<em>i.e.</em>, non-empty), it is returned.</li> <li>if not, <code>@c</code> is evaluated in list context as well, and returned.</li> </ul> <p>Obviously, my penultimate statement is wrong. Why? And, more importantly, which part of the documentation or sources account for this behavior?</p> <p>PS: out of the question's scope, the reason I refrain from the documentation's suggestion of using the ternary operator is that my <code>@b</code> is actually a temporary (a function call result).</p>