Tagged Questions
0
votes
1answer
43 views
BNF grammar of xml
I wrote simple class code generator, that creates code basing on xml file.
The xml file looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<classes>
<class name="Klient">
...
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
0answers
96 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 ...
1
vote
1answer
66 views
Irony Grammar Specification error
I am brand-new to Irony (I studied BNF at uni about 10 years ago), and am starting by creating a quasi-real coordinate parser.
Below is the grammar class (full code at ...
4
votes
1answer
75 views
init-declarator-list and the GNU GCC attribute grammar
I am revamping an inhouse C language bison/flex-based parser, amongst others introducing proper __ attribute__ support.
Since I cannot find any official BNF-style grammar which describes GNU GCC __ ...
5
votes
1answer
95 views
Is there a set way to determine ambiguity in a grammar?
We are learning about ambiguity in class, and the following grammar was given as an example of an ambiguous grammar. I just am not seeing how it is ambiguous. Is there a set pattern or method people ...
0
votes
1answer
73 views
Is this grammar ambiguous?
I'm trying to define a language using Jison with very little punctuation for delimitation - like CoffeeScript but without the indentation. This is sort of what I want to achieve:
# Definition
...
1
vote
2answers
126 views
BNF Grammar for units of measurement
I'm using ParseKit to parse units of measure. In order to do this I have to supply a grammar. I tried googling but that didn't get me far. While it is a fun exercise on my own I want to make sure I ...
1
vote
1answer
89 views
Reduce/Reduce conflict when introducing pointers in my grammar
I'm working on a small compiler in order to get a greater appreciation of the difficulties of creating one's own language. Right now I'm at the stage of adding pointer functionality to my grammar but ...
1
vote
2answers
456 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 ...
1
vote
1answer
63 views
BNF: Swapping non-terminals place in the grammar rules effect on production
I have spent all of yesterday and 7x hours today trying to find a definitive answer to a question in an assignment. I have watched hours of lectures on BNF and EBNF but none have addressed my ...
2
votes
1answer
125 views
bnf grammar checking
is there a tool to check my bnf grammar?
For example:
<assign>::=<var>=<expr>
<var>::=A|B|C
<expr>::=<expr>+<expr>
|<var>
A = B + C is a ...
0
votes
1answer
106 views
Is the grammar infinite or finite?
S ::= N
N ::= A B C X | D E F X
A ::= edith | simone
B ::= de | ε
C ::= wharton | beauvoir
D ::= percy
E ::= bysshe | ε
F ::= shelley
X ::= and S | ε
It seems you could go on forever if ...
1
vote
2answers
70 views
BNF for comma separated sequence?
Can't come up with a BNF grammar for the sequence of characters (possibly empty), separated by comma, but not starting or ending with a comma,
So this is OK:
<--- Empty sequence is ok!
A
A,B
...
0
votes
1answer
204 views
Is this BNF grammar LL(1)?
Can someone please confirm for me if the following BNF grammar is LL(1):
S ::= A B B A
A ::= a
A ::=
B ::= b
B ::=
where S is the start symbol and non terminals A and B can derive to epsilon. I ...
1
vote
1answer
54 views
Multiple-digit numbers getting split by space in NuGram?
I'm seeing some unexpected behavior in the NuGram IDE Eclipse plug-in for ABNF grammar development.
Say I have a rule that reads:
$fifties =
50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59
;
...
4
votes
1answer
970 views
C++ BNF grammar with parsing/matching examples
I'm developing a C++ parser (for an IDE), so now trying to understand C++ grammar in details.
While I've found an excellent grammar source at http://www.nongnu.org/hcb/, I'm having trouble ...
1
vote
1answer
378 views
GOLD Parser comment grammar
I'm having some trouble with comment blocks in my grammar. The syntax is fine, but Step 3 DFA scanner is complaining about the way I'm going about it.
The language I'm trying to parse looks like ...
4
votes
1answer
533 views
BNF grammar for left-associative operators
I have the following EBNF grammar for simple arithmetic expressions with left-associative operators:
expression:
term {+ term}
term:
factor {* factor}
factor:
number
( expression )
...
1
vote
2answers
277 views
grammar of PDF 1.7. (BNF or variant)
I'm looking for a grammar of PDF 1.7 (BNF or variant)
absolutely not googleable
2
votes
1answer
181 views
How to represent negation in BNF?
Does BNF or ABNF support negation. That is exclude certain members of the set?
I did not see any such negation operator in its syntax.
For example, suppose S is the set of all alphanumeric strings ...
0
votes
2answers
82 views
“threadsafe” modifier in JAVA?
I just came across a BNF Grammar for JAVA. In it, "modifier" has a terminal symbol called "threadsafe". However, I have never seen it before and have not been able to locate that modifier in The Java ...
0
votes
0answers
136 views
Tool to generate complete language from a simple grammar? [closed]
If I had a bnf/ebnf, is there some program to display all or some of the strings or language?
2
votes
1answer
421 views
BNF Grammar Ambiguity
I was recently thinking of the following BNF
A -> x | yA | yAzA
where x,y,z are terminals.
I'm pretty sure this grammar is ambiguous, but how would one make it unambiguous?
3
votes
1answer
504 views
Converting EBNF to BNF for an LALR parser
I know there are several posts with a similar title. Most link to a dead site - and I have a more specific question anyways.
I'm trying to convert the EBNF in the XPath spec to straight BNF so that ...
1
vote
1answer
913 views
Converting BNF to EBNF
I need to know how to convert the next BNF to EBNF so it will help me understand more how they work
S-> aI1I2 | epsilon
I1-> I1e | b
I2-> cd | cS
note: epsilon means the empty set
0
votes
1answer
120 views
translating english description of c-variable into a c-style variable declaration, using BNF syntax
Hello I'm trying to write a grammar that translate english c declaration into c-style variable declaration, for example:
"x is an array of 10 pointers to int",
"x is a pointer to pointer to ...
1
vote
1answer
86 views
BNF to create vectors with same lengths
Is it possible to describe in BNF a pair of vectors of the same length? For instance, I would like to use such a grammar to capture valid dot product operations as such an operation requires vectors ...
3
votes
2answers
254 views
Recursive data structures in haskell: prolog-like terms
I have a question about recursive data structures in Haskell (language that I'm currently trying to learn).
I would like to encode in Haskell Prolog-like terms, but every solution I came up with has ...
4
votes
3answers
2k views
C# grammar in BNF or EBNF Parser generator for F#
I'm looking for BNF grammar for C# v4 that I can feed to fsyacc or if I can't find that an EBNF based parser generator that can output F#.
EDIT:
I'm not looking to write a parser for C# but an ...
0
votes
1answer
235 views
Generating all terminal strings in Python with grammar/rules?
I'm trying to generate all terminal strings from a given file up to a certain length. So for instance, if you have something like
A = A B
A = B
B = 0
B = 1
Then you would get something like
0
1
0 ...
0
votes
1answer
433 views
Dealing with ambiguity in BNF grammar
I'm trying to build a parser for a DSL I'm building using Irony in .NET and found a problem I can't find a way around. Since it handles BNF I think that any BNF solution will be of help.
I have the ...
2
votes
1answer
237 views
Recommended strategy for parsing ad-hoc if/else syntax in Java?
(Sorry, not sure if ad-hoc is the right word here ... open for a better suggestion)
I'm trying to parse the Galaxy ToolConfig XML CLI tool wrapper format in a Java app, for replicating (in part) the ...
0
votes
2answers
161 views
Yacc parser grammar bug. int X; read separately as int X and ;
Problem Description
In my yacc parser grammar, I have the following rules and corresponding actions defined (see program.y below). Parsing int X; should have the derivation type => TOK_INT and ...
8
votes
2answers
633 views
What is the easiest way of telling whether a BNF grammar is ambiguous or not?
Namely, is there a tool out there that will automatically show the full language for a given grammar, including highlighting ambiguities (if any)?
3
votes
1answer
374 views
Grammar for Unix command line options
This is a homework question. I would like to write a simple parser for Unix command line options.
First, I would like to define a grammar with BNF.
Options = Option | Options, space, Option;
Option = ...
1
vote
1answer
219 views
Consider the following BNF Grammar
Consider the following BNF grammer (where non-terminals are enclosed in angle-brackets and <identifier> matches to any legal Java variable identifier).
<exp> ::= <exp> + ...
1
vote
3answers
275 views
What is the best way to define grammars for a text editor?
I'm masochistically writing an open-source text editor for Mac and have finally reached the point at which I want to add syntax highlighting. I've been going back and forth on various solutions for ...
0
votes
3answers
343 views
Non-compressed, non-minimal grammar for programming language C
Programming languages are defined via a grammar, e.g. Java is defined in the JLS, see here
This is a minimal, "compressed" grammar, no construct is used twice: the result are - for me - unuseful ...
2
votes
3answers
1k views
Question about EBNF notation and JSON
Recently I've been studying parsers and grammars and how they work. I was reading over the formal grammar for JSON at http://www.ietf.org/rfc/rfc4627.txt, which uses EBNF. I was pretty confident in ...
1
vote
1answer
860 views
BNF grammar and Operator Associativity
(First of all this is not HW, I have all the answers)
I have a simple BNF grammar
<UNIT> ::= ( <CLAUSE> ) | a | b | c
<ITEM> ::= not <UNIT> | <UNIT>
<CLAUSE> ::= ...
4
votes
2answers
405 views
spotting an Ambiguous BNF
I have an assignment to correct an ambiguous BNF, but I am completely lost. I know this not a true programming question, and I will gladly delete it if it is not an appropriate question for these ...
1
vote
1answer
384 views
BNF to handle escape sequence
I use this BNF to parser my script:
`
{identset} = {ASCII} - {"\{\}}; //<--all ascii charset except '\"' '{' and '}'
{strset} = {ASCII} - {"};
ident = {identset}*;
str = ...
5
votes
2answers
560 views
How to correctly formalize the command line usage of GNU/Linux commands?
I'd like to write down a BNF-like formal grammar for describing the command line usage of some GNU/Linux tools. For example I can describe the usage of the cat command as:
(cat-command) : 'cat' ...
3
votes
3answers
2k views
BNF vs EBNF vs ABNF: which to choose?
I want to come up with a language syntax. I have read a bit about these three, and can't really see anything that one can do that another can't. Is there any reason to use one over another? Or is ...
1
vote
2answers
987 views
Is it easier to write a recursive-descent parser using an EBNF or a BNF?
I've got a BNF and EBNF for a grammar. The BNF is obviously more verbose. I have a fairly good idea as far as using the BNF to build a recursive-descent parser; there are many resources for this. I am ...
1
vote
3answers
438 views
Grammar for Java's annotations
Is there a BNF or EBNF that describes the grammar for Java's annotations?
3
votes
3answers
925 views
Grammar Syntax and Linguistics
I REALLY need a description of the english sentence structure in a way that can be translated by machine and is strictly rule based(no statistical stuff), it doesn't have to be a context-free grammar ...
4
votes
1answer
2k views
AS3 Grammar: Most accurate
I'm looking for an accurate AS3 grammar (format in not an issue, but I presume ANTLR will feature the most) to use for a practice grammar I'm making.
What is the most accurate grammar available for ...
6
votes
5answers
355 views
Grammars, Scala Parsing Combinators and Orderless Sets
I'm writing an application that will take in various "command" strings. I've been looking at the Scala combinator library to tokenize the commands. I find in a lot of cases I want to say: "These ...

