Tagged Questions
0
votes
2answers
41 views
How to match any symbol in ANTLR parser (not lexer)?
How to match any symbol in ANTLR parser (not lexer)? Where is the complete language description for ANTLR4 parsers?
UPDATE
Is the answer is "impossible"?
0
votes
1answer
24 views
An explanation of an ANTLR syntax required for JSON grammar
At the moment I'm investigating the JSON ANTLR grammar from ANTLR project wiki: http://www.antlr.org/wiki/display/ANTLR3/JSON+Interpreter
String :
'"' ( EscapeSequence | ~('\u0000'..'\u001f' | ...
0
votes
1answer
42 views
Is it possible to call one yacc parser from another to parse specific token substream?
Suppose I already have a complete YACC grammar. Let that be C grammar for example. Now I want to create a separate parser for domain-specific language, with simple grammar, except that it still needs ...
0
votes
0answers
33 views
Parser not working as expected
I started experimenting with PLY recently. I have the following code:
import ply.lex as lex
# List of token names
tokens = (
'BASIC',
'ACTION',
'RESULT',
)
t_BASIC = ...
1
vote
2answers
73 views
Is it possible to parse big file with ANTLR?
Is it possible to instruct ANTLR not to load entire file into memory? Can it apply rules one by one and generate topmost list of nodes sequentially, along with reading file? Also may be it is possible ...
1
vote
1answer
49 views
How to show grammar is not LL(1) and convert grammar to LL(1)
I'm trying to find the ambiguity in this grammar so I can remove it and convert it to LL(1), however for the life of me I can't find the ambiguity. Any help will be much appreciated.
D -> if (C) ...
1
vote
2answers
47 views
Is there a way to make this grammar LALR(1)?
I have a grammar with rules like this
A -> pq
B -> pr
Block -> { Astar Bstar }
Astar -> Astar A
| epsilon
Bstar -> Bstar B
| epsilon
Is there any way to turn this ...
1
vote
1answer
56 views
How to Interpret decl-specifier in the C++ Grammar
I copied the full c++ grammar into my parser generator but is having problems parsing C++ declaration. How should we interpret a decl-specifier when parsing a pointer type declaration like char* ...
0
votes
0answers
60 views
While loop expressions in compiler parser construction
I am kinda new to design and constructing compilers. The thing I would like to implement is adding the while loop expressions to my so-far existed c/c++ code based on lets say these general BNF ...
1
vote
4answers
83 views
Parsing, which method choose?
I'm working on a compiler (language close to C) and I've to implement it in C. My main question is how to choose the right parsing method in order to be efficient while coding my compiler.
Here's my ...
1
vote
0answers
59 views
NLTK regexp for noun phrases to not match ending with a preposition
I'm trying to identify noun phrases using NLTK, but am still a little green on regular expressions.
I was originally using a regexp like this:
NP: {<PP\$>?<JJ.*>*<NN.*>+}
But I ...
0
votes
1answer
95 views
How can I remove some terms when parsing this BNF?
I am attempting to parse a boolean expression using the Happy library. The problem is that the result is not as good as I would want it when I introduce parentheses. I have made the following grammar.
...
0
votes
1answer
66 views
ANTLR won't parse this easy input for simple calculator grammar
grammar TestCSharpParser;
options {
language=CSharp3;
}
@parser::namespace { Demo.Antlr }
@lexer::namespace { Demo.Antlr }
parse returns [double value]
: exp EOF {$value = $exp.value;}
;
...
0
votes
1answer
29 views
How to fix grammar with optional non-terminal?
I wrote grammar for LALR parser and I am stuck at optional non-terminal. Consider for example C++ dereference, when you can write:
******expression;
Of course you can write:
expression;
And ...
0
votes
0answers
57 views
Writing antlr grammar to parse a structured text file and store data
I have been trying to write a grammar for the following type of data.
I need to extract the function name with max no. of blocks in each and as well as store all the variable names (those declared ...
0
votes
2answers
158 views
Check Grammar of a sentence using Parse score given by Stanford parser
I am able to parse a sentence and get the parse score using Stanford parser with the java code below
LexicalizedParser lp = LexicalizedParser.loadModel(
...
1
vote
1answer
63 views
Parsing a simple extension of latex: grammar, recursive descent, pyParsing?
I would like to do a small extension of latex syntax.
There are pure latex ways to avoid this parsing exercise, and I know them.
The goal of this question is to solve the following parsing problem.
...
1
vote
3answers
68 views
POSIX sh EBNF grammar
Is there an existing POSIX sh grammar available or do I have to figure it out from the specification directly?
Note I'm not so much interested in a pure sh; an extended but conformant sh is also more ...
1
vote
1answer
63 views
Parsing errors with Bison
I'm writing my own scripting language using flex and bison. I have a grammar and I'm able to generate a parser which works fine with a correct script. I would like to be able to add also some ...
1
vote
1answer
176 views
LL(1) grammar. How to calculate follow set if one has self-recursion rules?
According to the rules from this paper :
If A is the start nonterminal, put EOF in FOLLOW(A)
Find the productions with A on the right-hand-side:
For each production X → αAβ, put FIRST(β) − ...
0
votes
1answer
95 views
How to use a ParseKit grammar to parse a simple boolean expression language
Trying to build a grammar that will parse simple bool expressions.
I am running into an issue when there are multiple expressions.
I need to be able to parse 1..n and/or'ed expressions.
Each example ...
3
votes
1answer
78 views
Parsing boolean expression without left hand recursion
I'm trying to match this
f(some_thing) == 'something else'
f(some_thing) is a function call, which is an expression
== is a boolean operator
'something else' is a string, which also is an ...
0
votes
1answer
142 views
LL(1) context free grammar square bratckets example [closed]
I am trying to solve LL(1) Context free grammar example.
All operators (like +, -, '(', ')', /, *(binary - multiply), &, *(unary - dereferencing pointer), id) are not a problem but square ...
0
votes
3answers
112 views
LL(1) Parsing — First(A) with Recursive First Alternatives
How would I apply the FIRST() rule on a production such as :
A -> AAb | Ab | s
where A is a non-terminal, and b,s are terminals.
FIRST(A) of alternatives 1 & 2 would be A again, but such would ...
0
votes
1answer
28 views
Checking input grammar and deciding a result
Say I have a string "abacabacabadcdcdcd" and I want to apply a simple set of rules:
abaca->a
dcd->d
From left to right s.t. the string ends up being "abad". This output will be used to make a ...
1
vote
1answer
61 views
Bison Shift/Reduce conflicts for small language parser
My objective is to create a parser for a small language. It is currently giving me one shift/reduce error.
My CFG is ambiguous somewhere, but I can't figure out where
prog: PROGRAM beg ...
0
votes
0answers
97 views
Backus-Naur Form to Chomsky Normal Form Algorithm
The program I'm writing (in Java) determines whether an expression (input through console) is part of the language generated by provided Backus-Naur Form rules (in a text file). The idea is to convert ...
0
votes
1answer
27 views
Syntax error due to a possible conflict [closed]
Never mind, I now managed to solve all the conflicts (for now), but am getting syntax errors instead, unfortunately. It doesn't seem to be accepting an identifier correctly; to be specific, the ...
0
votes
1answer
55 views
Syntax Error in my grammar production with Bison
As a test file, I'm using this piece of code to see whether or not the parser is working well:
/* A test program */
void main(void){
int x;
int y;
int z;
x= 10;
y = 20;
z =x* (x+y);
}
...
2
votes
1answer
74 views
Why isn't this expression being parsed correctly?
NOTE: This is a continuation of the topic posted HERE.
I'm working on a parser for the Jass scripting language (here's an excellent API reference for it) so that I may use it as in interpreter for ...
0
votes
1answer
73 views
Creating Bison File for Simple Grammar
I have the following simple grammar:
E -> T | ^ v . E
T -> F T1
T1 -> F T1 | epsilon
F -> ( E ) | v
I'm pretty new to Bison, so I was hoping someone could help show me how to write it ...
0
votes
1answer
79 views
Grammar Follow Set Explanation
I'm looking at the following simple grammar and its accompanying table:
S-> aSbT | epsilon
T-> bFaF | epsilon
F-> epsilon
nonterminal first set follow set
S a b ...
1
vote
2answers
310 views
Is My Lambda Calculus Grammar Unambiguous?
I am trying to write a small compiler for a language that handles lambda calculus. Here is the ambiguous definition of the language that I've found:
E → ^ v . E | E E | ( E ) | v
The symbols ^, ., ...
2
votes
1answer
236 views
Making a Grammar LL(1)
I have the following grammar:
S → a S b S | b S a S | ε
Since I'm trying to write a small compiler for it, I'd like to make it LL(1). I see that there seems to be a FIRST/FOLLOW conflict here, and I ...
0
votes
3answers
117 views
EBNF grammar to ANTLR3?
I have this EBNF grammar for the Jass scripting language.
What needs to be done to convert it to work with ANTLR 3.5?
Furthermore, are there any sort of tools available to aid me in doing so?
...
1
vote
0answers
110 views
Converting ambiguous to unambigous grammar for arithmetic expressions
I'm attempting to come up with a non-ambiguous grammar for arithmetic expressions to make an Earley parser faster but I seem to be having trouble.
This is the given ambiguous grammar
S -> E | ...
1
vote
1answer
90 views
Semantic check of expression with ANTLR 4
With a (simplified) grammar that recognizes classes of the form
classDeclaration
: Class className=Identifier
( Extends parentClassIdentifier=PackageIdentifier )?
( classSpecifier )*
...
0
votes
1answer
33 views
How to define at least one occurrence of a string between two tokens in a CUP parser grammar
I am trying to define a non terminal symbol in a LALR(1) grammar (with CUP parser). It is requested that
the <code> token must appear exactly two times,
while <hour> token must appear at ...
1
vote
1answer
126 views
LR(1) grammar: how to tell? examples for/against?
I'm currently having a look at GNU Bison to parse program code (or actually to extend a program that uses Bison for doing that). I understand that Bison can only (or: best) handle LR(1) grammars, i.e. ...
0
votes
1answer
36 views
Changing associativity schema in a grammar
I'm trying to use SableCC to generate a Parser for models, which I call LAM. LAM in itself are simple, and a simple grammar (where I omit a lot of things) for these is:
L := 0 | (x,y) | ...
1
vote
1answer
408 views
ANTLR 4 : Bad grammar and 'no viable alternative at input'
I'm using ANTLR 4 like that:
import org.antlr.v4.runtime.ANTLRInputStream;
import org.antlr.v4.runtime.CharStream;
import org.antlr.v4.runtime.CommonTokenStream;
import ...
2
votes
2answers
133 views
How can I add parentheses as the highest level of precedence in a simple grammar?
I'm trying to add 2 things to my grammar:
Unary minus sign, i.e. '-', and
Parentheses
Here's my grammar so far:
<comp> ::= <expr> | <comp> <op0> <expr>
<expr> ...
1
vote
3answers
112 views
ANTLR Parsing Literals and Quoted IDs
I'm working on an SQL grammar in ANTLR which allows quoted identifiers (table names, field names, etc), as well as quoted literal strings.
The problem is that this grammar seems to always match ...
1
vote
1answer
78 views
Grammar for arithmetic expressions without alternatives?
How to write Unambiguous Grammar for arithmetic expressions e.g. a+(b+c)*d
E.g.
E -> E + T | T
T -> T * F | F
F -> ( E ) | i
WITHOUT alternatives - in my case without |T and |F and |i
...
22
votes
2answers
214 views
How do Java, C++, C#, etc. get around this particular syntactic ambiguity with < and >?
I used to think C++ was the "weird" one with all the ambiguities with < and >, but after trying to implement a parser I think I found an example which breaks just about every language that uses ...
0
votes
1answer
79 views
good python strategy for parsing grammar-based file format
I've written quite a few simple importers for 3D file formats like PLY and OBJ, which seem to have a very state-based per-line structure making parsing very easy. My friend wanted me to implement a ...
0
votes
0answers
70 views
javascript grammar and automatic semocolon insertion
I'm trying to implement javascript parser and I stuck in a problem. Javascript has a technique called "semicolon insertion". So what is a common way to deal with automatic semicolon insertion in js ...
1
vote
1answer
43 views
something that checks if my grammar is LL(1)
I'm writing a parser for a course and my grammar is rather long and I don't want to check it by hand. Is there something I can use to check if it's LL(1)?
0
votes
1answer
234 views
Ambiguous Grammar:
Simple question.
The following is the extract of a piece of grammar that I am trying to see whether it is ambiguous or not.
Y->b
Y->Z
Z->bW
W->d
W->ϵ
When I compute the first set ...
1
vote
2answers
457 views
How to implement Backus-Naur Form in Python
I know there are some vaguely similar questions already relating to BNF (Backus-Naur Form) grammars in Python, but none of them help me much in terms of my application.
I have multiple BNFs that I ...




