3
votes
2answers
65 views
Left Recursion in Grammar Results in Conflicts
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.
However, when I try to …
3
votes
4answers
71 views
Regexp to exclude 101 and 110.
What is a regexp that accepts everything over the language {0,1} but has no substring 110 or 101?
ie:
111111, 000011111, 100001000001001 is good
1110111, 110110 is invalid.
0
votes
2answers
58 views
What’s the matter with this Grammar?
grammar Test;
IDHEAD: ('a'..'z' | 'A'..'Z' | '_');
IDTAIL: (IDHEAD | '0'..'9');
ID: (IDHEAD IDTAIL*);
fragment
TYPE: ('text' | 'number' | 'bool');
define: 'define' ID 'as' …
2
votes
3answers
65 views
Boost spirit and forward declarations issues
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 act …
0
votes
3answers
71 views
How to determine the FIRST set of E in this grammar ?
I wonder how to determine the FIRST set of E with grammar:
E -> XYE | e
X -> x
Y -> y
Can anyone give me some direction?
2
votes
1answer
62 views
Elimination left recursion for E := EE+|EE-|id
How to eliminate left recursion for the following grammar?
E := EE+|EE-|id
Using the common procedure:
A := Aa|b
translates to:
A := b|A'
A' := ϵ| Aa
Applying this to the …
3
votes
3answers
113 views
Parsing grammars using OCaml
Hi,
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.
Here's a sample Awk grammar:
type ('nonterm, …
15
votes
47answers
4k views
Is there a human readable programming language?
I mean, is there a coded language with human style coding?
For example:
Create an object called MyVar and initialize it to 10;
Take MyVar and call MyMethod() with parameters. . .
…
6
votes
4answers
281 views
Where can I find C# 3.0 grammar?
I'm planning to write a C# 3.0 compiler in C#. Where can I get the grammar for parser generation?
Preferably one that works with ANTLR v3 without modification.
1
vote
1answer
41 views
Where is the TextMate Language Parser?
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 …
0
votes
1answer
143 views
ANTLR Grammar for expressions
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/f …
3
votes
1answer
65 views
Parser/Lexer ignoring incomplete grammar rules
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 …
6
votes
4answers
191 views
Why can’t I assign @b || @c to @a in Perl?
I'd like to perform some convoluted variation of the @a = @b || @c assignment, with the intent of taking @b if non-empty (hence true in a boolean sense), @c otherwise. The documen …
0
votes
4answers
201 views
accepting a grammar in C++
this is a lab assignment i am stuck on. i cant believe i am having problems with this basic programming, but i cant afford to waste any more time on this. i gotta ask the experts.
…
5
votes
4answers
338 views
Open Source Grammar Checker
For an online project I'm working on, I am looking for a open source grammar checker. I have searched Google, with some good results (http://www.link.cs.cmu.edu/link/, etc), but I …
