0
votes
2answers
50 views
How to call a flex parser in c
How to call a flex parser in c ?
0
votes
1answer
35 views
flex, defining char
Hello
I want to define char (ie 'a AND 'a') but I am having issues in checking errors.
Here how I write the rule and check:
char " ' " {letter}
code
{char} {
…
0
votes
1answer
50 views
Selective merge of two or more data files
Dear Overflowns:
I have an executable whose input is contained in an ASCII file with format:
$ GENERAL INPUTS
$ PARAM1 = 123.456
PARAM2=456,789,101112
PARAM3(1)=123,456,789
PARAM …
8
votes
7answers
273 views
Writing compilers … what’s right and what’s wrong?
Okay, in my quest to figure out the necessary stuff to write a compiler, I've reached a bit of a roadblock. It seems that every technology or tool that I find has some opposition …
0
votes
1answer
154 views
Undefined reference to ‘yylex()’
I'm trying to use flex and bison to create a simple scripting language. Right now, I'm just trying to get a calculator working.
I can't get it to compile, though. When I run this …
0
votes
3answers
83 views
Statement with no effect warning with GCC and Flex/Bison
When compiling my project with gcc and the -Wall option, I get a warning about a statement with no effect in the non-existant last line of my flex file:
Warning:
gcc -Wall -O0 -g …
0
votes
2answers
45 views
Lexical Tie-Ins with Flex and Bison
Hello all :)
I've been looking to recognise a language which does not fit the general Flex/Bison paradigm. It has completely different token rules depending on semantic context. F …
3
votes
6answers
370 views
Lexer/parser tools
Which lexer/parser generator is the best (easiest to use, fastest) for C or C++? I'm using flex and bison right now, but bison only handles LALR(1) grammars. The language I'm parsi …
0
votes
1answer
48 views
Handling error conditions in Lex rather than Yacc?
Suppose I have a lex regular expression like
[aA][0-9]{2,2}[pP][sS][nN]? { return TOKEN; }
If a user enters
A75PsN
A75PS
It will match
But if a user says something like
A75 …
0
votes
2answers
124 views
How to do Variable Substitution with Flex/Lex and Yacc/Bison
Wikipedia's Interpolation Definition
I am just learning flex / bison and I am writing my own shell with it. I am trying to figure out a good way to do variable interpolation. My …
1
vote
3answers
89 views
How to use indentation as block delimiters with bison and flex
I wounder how to implement indentation as block delimiters in bison + flex. Just like in python. I'm writing my own programming language ( mostly for fun, but I intend to use it to …
3
votes
4answers
154 views
What does the “yy” in lex.yy.c stand for?
What does the "yy" in lex.yy.c stand for?
1
vote
1answer
88 views
Creating a foreach keyword with yacc or Bison and Flex
I have developed a interpreted programming language. It is strongly based on C. The problem is, I want to add a foreach directive and have no clue how to.
I am using Bison and F …
0
votes
1answer
134 views
Error Handing with Flex(lex) and Bison(yacc)
From the Bison Manual:
In a simple interactive command parser
where each input is one line, it may
be sufficient to allow yyparse to
return 1 on error and have the caller …
3
votes
2answers
238 views
Flex/Bison IDE?
I'm looking for a good development environment in which to work on flex or bison or both.
Are there any IDE's that have these capabilities and/or are suitable for this?
(If not t …
