active questions tagged grammar - Stack Overflowmost recent 30 from stackoverflow.com2009-12-01T04:56:25Zhttp://stackoverflow.com/feeds/tag/grammarhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1452729/antlr-grammar-for-expressions0ANTLR Grammar for expressionsjameszhao002009-09-21T03:10:34Z2009-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:
('>'|'<'|'>='|'<='|'=='|'~=')? 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-parser0Question about building a symbol table with a yacc parserPhenom2009-11-26T11:00:40Z2009-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-linux1Tips on Using Bison --graph=[file] on LinuxDon Wakefield2009-11-25T15:52:50Z2009-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=<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-declarations0Why does my yacc program not recognize function declarations?Phenom2009-11-24T10:58:08Z2009-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->value = 0; $2->arraysize = 0;};
| type_specifier ID '[' NUM ']' ';' {$2->arraysize = $4;printf("Array size is %d", $2->arraysize);} ;
type_specifier : INT | VOID ;
fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); printf("Parameters: \n", $2->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-sets2Grammars, Scala Parsing Combinators and Orderless SetsBrian Heylin2009-11-23T08:03:05Z2009-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-attributes1Generating an XML path from a set of attributesEric Brown2009-11-16T19:42:47Z2009-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><GRAMMAR LANGID="409">
<DEFINE>
<ID NAME="NUMBERS1THROUGH8_ID" VAL="6503" />
<ID NAME="NUMBERCOMMAND" VAL="-1"/>
<ID NAME="NUMBER1" VAL="1"/>
<ID NAME="NUMBER2" VAL="2"/>
<ID NAME="NUMBER3" VAL="3"/>
<ID NAME="NUMBER4" VAL="4"/>
<ID NAME="NUMBER5" VAL="5"/>
<ID NAME="NUMBER6" VAL="6"/>
<ID NAME="NUMBER7" VAL="7"/>
<ID NAME="NUMBER8" VAL="8"/>
<ID NAME="NUMBER9" VAL="9"/>
</DEFINE>
<RULE NAME="ChooseSynoynms">
<L>
<P>choose</P>
<P>number</P>
<P>select</P>
<P>click</P>
</L>
</RULE>
<RULE NAME="NumberList">
<LN PROPNAME="numberCommand" PROPID="NUMBERCOMMAND">
<PN VAL="NUMBER1">one</PN>
<PN VAL="NUMBER2">two</PN>
<PN VAL="NUMBER3">three</PN>
<PN VAL="NUMBER4">four</PN>
<PN VAL="NUMBER5">five</PN>
<PN VAL="NUMBER6">six</PN>
<PN VAL="NUMBER7">seven</PN>
<PN VAL="NUMBER8">eight</PN>
<PN VAL="NUMBER9">nine</PN>
</LN>
</RULE>
<RULE ID="NUMBERS1THROUGH8_ID" TOPLEVEL="INACTIVE">
<O %COMMAND_WEIGHT%><RULEREF NAME="ChooseSynoynms"/></O>
<RULEREF NAME="NumberList" />
<O>
<P PROPNAME="ExplicitOK" VAL="1">ok</P>
</O>
</RULE>
</GRAMMAR>
</code></pre>
<p>Grammar 2: (German)</p>
<pre><code><GRAMMAR LANGID="409">
<DEFINE>
<ID NAME="NUMBERS1THROUGH8_ID" VAL="6503" />
<ID NAME="NUMBERCOMMAND" VAL="-1"/>
<ID NAME="NUMBER1" VAL="1"/>
<ID NAME="NUMBER2" VAL="2"/>
<ID NAME="NUMBER3" VAL="3"/>
<ID NAME="NUMBER4" VAL="4"/>
<ID NAME="NUMBER5" VAL="5"/>
<ID NAME="NUMBER6" VAL="6"/>
<ID NAME="NUMBER7" VAL="7"/>
<ID NAME="NUMBER8" VAL="8"/>
<ID NAME="NUMBER9" VAL="9"/>
</DEFINE>
<RULE NAME="ChooseSynoynms">
<L>
<P>wahlen</P>
<P>Nummer</P>
<P>auswahlen</P>
<P>klicken</P>
</L>
</RULE>
<RULE NAME="NumberList">
<LN PROPNAME="numberCommand" PROPID="NUMBERCOMMAND">
<PN VAL="NUMBER1">eins</PN>
<PN VAL="NUMBER2">zwei</PN>
<PN VAL="NUMBER3">drei</PN>
<PN VAL="NUMBER4">vier</PN>
<PN VAL="NUMBER5">funf</PN>
<PN VAL="NUMBER6">sechs</PN>
<PN VAL="NUMBER7">sieben</PN>
<PN VAL="NUMBER8">acht</PN>
<PN VAL="NUMBER9">neun</PN>
</LN>
</RULE>
<RULE ID="NUMBERS1THROUGH8_ID" TOPLEVEL="INACTIVE">
<P><O>auf</O></P> <RULEREF NAME="NumberList"/>
<O>
<P PROPNAME="ExplicitOK" VAL="1">OK</P>
</O>
<P><RULEREF NAME="ChooseSynoynms"/></P>
</RULE>
</GRAMMAR>
</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-language16Is there a human readable programming language?Scuffia2008-10-14T20:51:13Z2009-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-code0Is there a shift/reduce error in this yacc code?Phenom2009-11-18T09:40:43Z2009-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-grammar0What's wrong with my grammarPhenom2009-11-17T22:05:58Z2009-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 <string.h>
%}
%union
{
int intval;
struct symtab *symp;
}
%token ELSE
%token IF
%token INT
%token RETURN
%token VOID
%token WHILE
%token <symp> ID
%token <intval> NUM
%token LTE
%token GTE
%token EQUAL
%token NOTEQUAL
type <string> paramlist
%%
program : declaration_list ;
declaration_list : declaration_list declaration | declaration ;
declaration : var_declaration
| fun_declaration
| '$' { printTable();};
var_declaration : type_specifier ID ';' {$2->value = 0; $2->arraysize = 0;};
| type_specifier ID '[' NUM ']' ';' {$2->arraysize = $4;printf("Array size is %d", $2->arraysize);} ;
type_specifier : INT | VOID ;
fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); $2->args = 'a'; printf("Parameters: \n", $2->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 | '<' | '>' | 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 < &symtab[NSYMS]; sp++) {
/* is it already here? */
if(sp->name && !strcmp(sp->name, s))
{
yyerror("already in symbol table\n");
exit(1);
return sp;
}
if(!sp->name) { /* is it free */
sp->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 < &symtab[NSYMS]; sp++)
{
printf("name: %s\t"
"args: %s\t"
"value %d\t"
"arraysize %d\n",
sp->name,
sp->args,
sp->value,
sp->arraysize);
}
}
</code></pre>
http://stackoverflow.com/questions/1751877/could-you-give-me-a-correctly-formatted-program-example-for-this-grammar-1Could you give me a correctly formatted program example for this grammar? [closed]Phenom2009-11-17T21:19:52Z2009-11-17T21:24:40Z
<p>The lex file:</p>
<pre><code>/* C-Minus BNF Grammar */
%{
#include "parser.h"
#include <string.h>
%}
%union
{
int intval;
struct symtab *symp;
}
%token ELSE
%token IF
%token INT
%token RETURN
%token VOID
%token WHILE
%token <symp> ID
%token <intval> NUM
%token LTE
%token GTE
%token EQUAL
%token NOTEQUAL
type <string> paramlist
%%
program : declaration_list ;
declaration_list : declaration_list declaration | declaration ;
declaration : var_declaration | fun_declaration ;
var_declaration : type_specifier ID ';' {$2->value = 0; $2->arraysize = 0;};
| type_specifier ID '[' NUM ']' ';' {$2->arraysize = $4;printf("Array size is %d", $2->arraysize);} ;
type_specifier : INT | VOID ;
fun_declaration : type_specifier ID '(' params ')' compound_stmt {printf("function declaration\n"); $2->args = 'a'; printf("Parameters: \n", $2->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 | '<' | '>' | 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 < &symtab[NSYMS]; sp++) {
/* is it already here? */
if(sp->name && !strcmp(sp->name, s))
{
yyerror("already in symbol table\n");
exit(1);
return sp;
}
if(!sp->name) { /* is it free */
sp->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-yacc1How to return literals from flex to yacc?Phenom2009-11-17T12:17:12Z2009-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-file0Are there any programs to help with reading the grammar in a yacc file?Phenom2009-11-17T14:13:26Z2009-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-identifiers0The program I made with flex/yacc doesn't always recognize identifiersPhenom2009-11-17T13:49:22Z2009-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 <stdlib.h>
#include <ctype.h>
#include <string.h>
#include "y.tab.h"
%}
else else
if if
int int
return return
void void
while while
id [a-zA-Z]+
num [0-9]+
lte <=
gte >=
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 | '<' | '>' | 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-yacc0Why do I get a syntax error in my program made with flex and yacc?Phenom2009-11-17T11:56:50Z2009-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 <stdlib.h>
#include <ctype.h>
#include <string.h>
#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 <=
gte >=
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 | '<' | '>' | 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-name4Why do a lot of programming languages put the type *after* the variable name?Jason Baker2009-11-11T00:41:48Z2009-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-completion0Tolerating malformed statements with ANTLR (e.g., for code-completion)CapnNefarious2009-11-12T15:57:47Z2009-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-grammar1What's the matter with this Grammar?Kivin2009-11-07T21:36:25Z2009-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-1103Regexp to exclude 101 and 110.Absolute02009-11-08T14:44:00Z2009-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-conflicts3Left Recursion in Grammar Results in ConflictsKyle Brandt2009-11-08T18:01:45Z2009-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-issues2Boost spirit and forward declarations issuesvarnie2009-11-05T06:14:10Z2009-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);//<-- 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-grammar0How to determine the FIRST set of E in this grammar ?meoconbatchut2009-11-02T02:05:13Z2009-11-02T10:17:37Z
<p>I wonder how to determine the <code>FIRST</code> set of E with grammar:</p>
<pre><code>E -> XYE | e
X -> x
Y -> y
</code></pre>
<p>Can anyone give me some direction?</p>
http://stackoverflow.com/questions/1584247/parsing-grammars-using-ocaml3Parsing grammars using OCamlDV2009-10-18T07:23:28Z2009-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 ->
[[N Term; N Binop; N Expr];
[N Term]]
| Term ->
[[N Num];
[N Lvalue];
[N Incrop; N Lvalue];
[N Lvalue; N Incrop];
[T"("; N Expr; T")"]]
| Lvalue ->
[[T"$"; N Expr]]
| Incrop ->
[[T"++"];
[T"--"]]
| Binop ->
[[T"+"];
[T"-"]]
| Num ->
[[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-id2Elimination left recursion for E := EE+|EE-|idAbsolute02009-10-25T13:32:03Z2009-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+ -> ϵ 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-grammar6Where can I find C# 3.0 grammar?Mehrdad Afshari2009-10-13T16:52:57Z2009-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-parser1Where is the TextMate Language Parser?viatropos2009-09-30T11:34:45Z2009-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-theory5What is the best book for Programming Language Theory?Simucal2009-05-08T03:17:58Z2009-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-rules3Parser/Lexer ignoring incomplete grammar rulesnlucaroni2009-09-18T18:27:17Z2009-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 <string> FLOAT
%token <string> INT
%token <string> LABEL
%type <Conf.config> 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-treetop1Learning Treetopcmartin2009-02-06T15:51:44Z2009-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-in7Login or Log in?nickf2008-11-21T01:26:00Z2009-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-perl6Why can't I assign @b || @c to @a in Perl?JB2009-08-31T14:12:34Z2009-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 "&&" operators return the last value evaluated
(unlike C's "||" and "&&", 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>