0
votes
2answers
32 views
Deriving a state machine from a BNF grammar
I am trying to put together a proof of concept of an XSS-safe string interpolation scheme.
Given a string with substitutions,
"Hello <b>$planetoid</b>!"
I want brea …
0
votes
2answers
37 views
BNF grammar for sequence of statements
If I am making a grammar for a c-like language that has a sequence of statements, what is the most standard way for defining the grammar?
My thought is to do something like this:
…
1
vote
1answer
57 views
Generate Objective-C parser from BNF grammar
I have looked at the following software tools:
Ragel http://www.complang.org/ragel/
ANTLR http://www.antlr.org/
ANTLR seems the most straight-forward, however its documentation …
0
votes
2answers
44 views
bnf/ebnf for xml schema
I'm looking for a BNF/EBNF of XML Schema.
I just found the one for XML (http://www.w3.org/TR/REC-xml or extracted at http://www.jelks.nu/XML/xmlebnf.html).
Well it's a starting po …
1
vote
2answers
48 views
Syntax (probably BNF) spec of VBA ?
Hi,
I have to maintain a portion of Access 2003 VBA code, which is not my primary programming language, and while I'm pretty solid on doing regular stuff, I would still like to ha …
1
vote
2answers
99 views
(E)BNF Parsing to XML
Is there any (E)BNF parser out there which is able to generate XML trees of the AST?
Rephrasing: what is the quickest way to compile an (E)BNF defined language into some sort of X …
2
votes
3answers
90 views
What is the BNF for a regex (in order to write a full or partial parser)
I am interested in parsing regexes (not to be confused with using regexes for parsing). Is there a BNF for Java 1.6 regexes (or other languages?)
[NOTE: There is a similar older q …
3
votes
3answers
215 views
Z80 ASM BNF structure… I’m am on the right track?
I'm currently trying to get to grips with BNF and attempting to assemble some Z80 ASM code. Since I'm new to both fields So my question is, Am I even on the right track? I am curre …
1
vote
6answers
352 views
Visual Basic 6.0 Language Syntax
I've done a fair bit of googling, but I've been unable to find what I'm looking for. I am looking for documentation of the syntax to the Visual Basic 6.0 language. Specifically s …
2
votes
2answers
108 views
Seeking an interactive utility for creating context free parser grammars
Hi,
I would like a utility which I can give a piece of text (in a text box) and experiment with a parser grammar (through editing a BNF of similar) and token structure while I can …
1
vote
1answer
109 views
How can I define an INI file grammar using the BNFC?
http://www.cs.chalmers.se/Cs/Research/Language-technology/BNFC/
how should I write my labeled BNF to get BNFC to generate a INI parser for me?
I have only gotten so far o__O!
en …
4
votes
4answers
892 views
Where can I find standard BNF or YACC grammar for C++ language?
I'm trying to work on a kind of code generator to help unit-testing an legacy C/C++ blended project. I don't find any kind of independent tool can generate stub code from declarati …
3
votes
3answers
450 views
Tool for generating railroad diagram used on json.org
I love the syntax or railroad diagrams on json.org which are a graphical representation of the BNF language. I haven't found any tools that can produce results as eloquently. Can a …
3
votes
1answer
500 views
Use existing languages in BNF with TinyPG?
How can I use these BNF grammars which are in GOLD meta-syntax (RegExp + BNF) with TinyPG? I'm new to BNF so approximately what sort of conversion will I have to do to convert BNF …
1
vote
5answers
377 views
BNF to regular Expressions
How can I describe the language
A → AA | ( A ) | ε
generates using regular expressions?
