BNF stands for Backus-Naur Form, or Backus Normal Form. It is form of notation for context-free grammars and is often used for (but is not restricted to) the description the syntax of programming languages. In addition to programming languages, it is also used to describe communication protocols and ...
0
votes
1answer
44 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">
...
1
vote
1answer
23 views
How do I denote this syntax's semantics?
I am writing a language specification, and I need the following rudimentary question resolved. Suppose I have the (admittedly contrived) abstract syntax:
<A> ::= <B> | <C>
...
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.
...
1
vote
1answer
25 views
What RFC defines arrays transmitted over HTTP?
What RFC defines the passing arrays over HTTP? Most web application platforms allow you to supply an array of arguments over GET or POST. The following URL is an example:
...
3
votes
0answers
64 views
How do you match zero or more tokens in Jison?
I'm writing a simple expression parser in Jison allowing an arbitrary number of newlines to follow a binary operator in an expression. This is my grammar so far:
{
"operators": [
["left", ...
0
votes
0answers
10 views
Fitting order in bnf converter
I have problem with rules priority in bnf converter. Here I copy some rules
CParams. CallParams ::= [CallParam] ;
separator CallParam "," ;
VarCParam. CallParam ::= Ident ;
ExpCParam. CallParam ::= ...
1
vote
5answers
97 views
The grammar for method declarations in Java
The grammar for method declarations in Java is something like the following:
Java method declaration BNF:
method_declaration
::=
{ modifier } type identifier
"(" [ parameter_list ] ...
4
votes
1answer
164 views
Context-free grammar for c?
I'm working on a parser for C. I'm trying to find a list of all of the context-free derivations for C. Ideally it would be in BNF or similar. I'm sure such a thing is out there, but googling around ...
0
votes
1answer
19 views
Using Emac's SMIE to parse language with optional ; for statement termination
I am using SMIE to parse a language that doesn't always require ; to terminate a statement.
If the end of a line is outside of a brace construct ({},(),[]) and the last non-comment token was not an ...
0
votes
2answers
73 views
Dynamic parser - read tokens from a separate file
Let's say I want to parse my new language that looks like this:
main.mylang
import "tags.mylang"
cat dog bacon
And there's another file tags.mylang that looks like this:
cat "meow"
dog "woof"
...
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 ...
1
vote
1answer
67 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
77 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
0answers
36 views
In Computer Science(especially in metalanguages using EBNF) , do the symbols -> and <- have specific meaning?
My apologies if this is not in SO's domain - it's a bit high-level/theoretical.
I'm studying a custom Language Specification(called ACELandic if you interested). And it is based of of Extended ...
0
votes
0answers
22 views
[[ E]]exp : State ->Int X Store, semantics of programming
In denotational sematics of expression, the denotation function [[ E ]]exp for Expressition E such that [[ E ]]exp: State -> Int X State. But the E may be non-terminate. Please complete the inductive ...
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
129 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 ...
0
votes
1answer
241 views
Converting EBNF to BNF basics
I'm not quite sure how to answer a question for my computer languages class. I am to convert the following statement from EBNF form to BNF form:
EBNF: expr --> [-] term {+ term}
I understand that ...
1
vote
2answers
322 views
How to convert BNF to EBNF
How can I convert this BNF to EBNF?
<vardec> ::= var <vardeclist>;
<vardeclist> ::= <varandtype> {;<varandtype>}
<varandtype> ::= <ident> {,<ident>} : ...
2
votes
2answers
81 views
Is it possible to have a java program in eclipse to compile other languages than java?
I am currently working on a project which needs to compile files and give a diagnostic of the errors(syntax) found. I have been able to get the program working for .java files. Now I have to do the ...
-1
votes
1answer
124 views
How to generate a parser in java for a bnf notation? [closed]
I have Salesforce SOQL BNF notation.Want to validate a query string for syntax from my java code.How to create a parser class using this bnf notation? Is there any tool that generates a parser for a ...
2
votes
1answer
134 views
Generate java classes from DSL grammar file
I'm looking for a way to generate a parser from a grammar file (BNF/BNF-like) that will populate an AST. However, I'm also looking to automatically generate the various AST classes in a way that is ...
0
votes
0answers
39 views
How to use a BNF notation to generate a parser? [duplicate]
I have Salesforce SOQL BNF notation.Want to validate a query string for syntax from my java code.How to create a parser class using this bnf notation?
Is there any tool that generates a parser for a ...
2
votes
1answer
167 views
Parser for CMIS queries based on BNF grammar
For our CMIS server side implementation, I am looking to build a parser that will parse query statements provided as input to the query method. CMIS defines a BNF grammar for the query statements. I ...
0
votes
2answers
181 views
BNF Grammar for propositional logic ANTLR
I'm trying to create a BNF Grammar in Antlr for propositional logic but I keep getting the error:
java.lang.NoSuchFieldError: offendingToken
As there is no line number displayed, I don't know where ...
3
votes
1answer
101 views
BNFC parser and bracket Mathematica like syntax
I played a bit with the BNF Converter and tried to re-engineer parts of the Mathematica language. My BNF had already about 150 lines and worked OK, until I noticed a very basic bug. Brackets [] in ...
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 ...
0
votes
1answer
37 views
Is there a xBNF parser to GObject classes
Does anyone know if there is an ABNF parser for GObject ? I want to describe GObject classes in ABNF and load them into a C program.
I can't seem to find one around that can help bootstrap a ...
1
vote
2answers
466 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
3answers
298 views
Matching a “text” in line by line file with XText
I try to write the Xtext BNF for Configuration files (known with the .ini extension)
For instance, I'd like to successfully parse
[Section1]
a = Easy123
b = This *is* valid too
[Section_2]
c = ...
-4
votes
2answers
473 views
Program to check syntax errors and automatically provide solutions [closed]
I am required to develop a program that takes as input a text file (java source code) and checks the codes against the syntax rules for java.
Following that, the program should underline the SYNTAX ...
0
votes
1answer
47 views
ParseKit greedy matching mode
I am making something like formula validator and I am using ParseKit framework to accomplish that. My approach is to create proper grammar and when didMatchFormula callback method is called on sample ...
0
votes
1answer
142 views
Excel formula grammar in BNF or any other notations
I am looking for grammar of excel formulas in BNF or other notations. I have to create the grammar in BNF or similar notations and then using javascript, we need to parse the input formula for ...
0
votes
4answers
164 views
java: calculator, BNF, AST adding & subtracting
I'm trying to write a method that does addition, and subtraction
using indexOf() , lastIndexOf()
for example string s = "3 + 3"
I want to break this string into two substrings then do certain ...
1
vote
2answers
78 views
Handle object destruction on the stack
I'm currently writing a compiler front end for personal education on the topic and I've run into a problem concerning the way I handle BNF definition in C++ through operator overloading.
Currently my ...
1
vote
1answer
116 views
extend racket syntax for backus-naur-forms
I have a set of derivation rules implemented in racket. We can assume that there aren't any optional , which means there are no rules containing pipes (in BNF): ::= |
In racket, I have got ...
0
votes
0answers
18 views
If a rule has multiple RHSs can you decide which one to use by examining the next input or do you have to look ahead?
When dealing with parsers, if a rule has multiple RHSs can you decide which one to use by examining the next input or do you have to look ahead? I am confused on what you would look ahead to the next ...
1
vote
1answer
65 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 ...
3
votes
1answer
52 views
ParseKit has not invoked methods as I expected [closed]
I am using Parse Kit and I have question with grammar.
This my grammar string below:
self.grammar = @" \
@start = sentence+; \
sentence = adjectives subjects will verbs subjects ...
0
votes
1answer
39 views
BNF repeating sequence of characters
How do I find a sequence of 3 or more "a" followed by the same number of "b" with a BNF expression?
I know that
{<letter>} or {<letter> | <digit>}
are used for repetitive items ...
0
votes
1answer
95 views
Defining Function Signatures in a Simple Language Grammar
I am currently learning how to create a simple expression language using Irony. I'm having a little bit of trouble figuring out the best way to define function signatures, and determining whose ...
2
votes
1answer
128 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 ...
1
vote
0answers
104 views
BNF Grammar evaluation [closed]
Can somebody please explain how this grammar evaluates this expression?
Grammar rules
assign::= id = expr
id::= A|B|C
expr::= expr + term | term
term::= term * factor | factor
factor::= (expr) | ...
3
votes
2answers
300 views
What is a good tool for testing BNF grammars?
I am writing an iPhone application which needs to parse a relatively simple set of expressions which will be entered by the user.
I need a tool that will allow me to enter the (E)BNF for a grammar, ...
0
votes
1answer
299 views
How to design an Abstract Syntax Tree (AST) from BNF
I have defined my language's BNF and have no idea how to design an AST from it.
For example, from the first serveral lines of my BNF:
<program> ::= <import declarations>? <class ...
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
1answer
116 views
AST for this Mini-Language
I'm having trouble figuring, deciding on how will the Abstract Syntax Tree result in memory, will it be a forest of trees for each statement?, or will it be a single rooted binary tree?.
Sample ...
5
votes
2answers
333 views
Is there a formal (ideally BNF) typescript js language grammar (or only typescript subset)?
I'm looking for the Typescript grammar.
Not the parser-lexer, but only the formal grammar description.
I want to implement ts it's code folding and basic static code analyzing as plugin to one simple ...
0
votes
0answers
81 views
Converting BNF to EBNF with empty string
I'm currently trying to convert a BNF grammar to EBNF. I understand most of what is involved, however I'm stuck on converting a single part of an expression (in the context of a bicycle...)
Given:
...


