0
votes
2answers
20 views
bison end of file
If i forget to put an empty line at the end of any of my files my program gets a syntax error. The problem is my grammar expects a newline to end the current line. Since a newline …
0
votes
2answers
27 views
Why does my flex/yacc compiler not compile correctly on another linux machine
On my machine (Windows running cygwin) it compiles correctly. Flex is version 2.5.35 and bison is version 2.3
On linux machine 1 it compiles correctly. Flex is version 2.5.4 and …
1
vote
2answers
25 views
Bison/Yacc, make literal token return its own value?
Below is my rule, when i replace $2 with '=' my code works. I know by default all literal tokens uses their ascii value (hence why multi character token require a definition)
The …
1
vote
3answers
83 views
How to resolve this Shift/Reduce conflict in YACC
I have a grammar like this:
"Match one or more rule1 where rule1 is one or more rule2, where rule2 is one or more rule3, etc. etc. each seperated by newlines". Look at the followi …
0
votes
4answers
75 views
bison shift instead of reduce. With reduce/reduce errors
In my language i can write
a = 1
b = 2
if true { } else { }
if true { } **Here is the problem**
else {}
My grammer doesnt support newlines between statements. An else can only …
0
votes
2answers
51 views
How to call a flex parser in c
How to call a flex parser in c ?
0
votes
2answers
31 views
Is it possible to stack Yacc grammar rule code?
Lets say I need to run some initialization code everytime I match a rule how can I reduce the redundancy?
rule : TOKEN1 { init(); token1Code(); }
| TOKEN2 { init(); token2Cod …
0
votes
1answer
28 views
yacc/bison combined word problem
I have an if statement like the below
if false { expr }
It works, great! but i typed in
iffalse { expr }
and it works as well :| How do i fix that? the above should be a var …
0
votes
1answer
27 views
Is there a shift/reduce error in this yacc code?
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.
statement : expression_stmt
| compoun …
0
votes
3answers
113 views
Search string parser in C/C++
I work on an open source project focused around Biblical texts. I would like to create a standard string format to build up a search string. I would then need to parse the search s …
0
votes
2answers
25 views
What is the conflict in this yacc parser?
I used the -v option in yacc to produce a y.output file. At the top of the file it says
State 98 conflicts: 1 shift/reduce
Further down in the file is the following:
state 98
…
0
votes
2answers
22 views
My flex/yacc program compiles differently on two different linux machines
One one machine, everything compiles fine. On another machine, it complains about the -ly option when I use gcc to create the output file. If I remove the -ly option, then it mak …
0
votes
2answers
89 views
What’s wrong with my grammar
I try to input the following into my yacc parser:
int main(void)
{
return;
}
It looks valid to me according to what's defined in the yacc file, but I get a "syntax error" messag …
1
vote
1answer
26 views
How to return literals from flex to yacc?
In my yacc file I have things like the following:
var_declaration : type_specifier ID ';'
| type_specifier ID '[' NUM ']' ';' ;
type_specifier : INT | VOID ;
ID …
0
votes
0answers
10 views
Are there any programs to help with reading the grammar in a yacc file?
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 …
