python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
"obvious" shift/reduce error in 6 tokens or less
I have a grammar, illustrated below, in which statements have an error clause that can include an arbitrary number of statements. The error clause must be terminated by an END (like case/esac in the ...
James K. Lowden
Votes: 0
Answers: 1
Segmentation fault with yacc/bison
I am trying to write a simple HTTP request parser for a school assignment but I have this segmentation fault that I can't get rid of. I think that my production rules are ok. I have executed bison wit...

Zlatan Radovanovic
Votes: 0
Answers: 2
Bison reduce/reduce conflict between lambda expression and parenthesized identifier
I'm attempting to write my own programming language at the moment, and I have the following simplified grammar:
...
%%
prog: stmtlist | %empty;
block: "{" stmtlist "}";
stmtlis...
jinscoe123
Votes: 0
Answers: 1
CMake project with flex/bison
I'm working on an hobby project in C++, using flex and bison. I'm using CMake as my build system, and I had struggle in making all work together.
I'm quite new to CMake so the documentation seems quit...

Alessandro Bertulli
Votes: 0
Answers: 1