1
vote
2answers
118 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 is lacking.
Ragel …
0
votes
1answer
47 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 …
1
vote
1answer
89 views
Scala Parser Token Delimiter Problem
I'm trying to define a grammar for the commands below.
object ParserWorkshop {
def main(args: Array[String]) = {
ChoiceParser("todo link todo to database")
ChoiceParser("todo link …
1
vote
3answers
82 views
Is there a BNF mode for Emacs?
I have to edit lots of grammar files in .bnf format. Is there a mode for this in Emacs?
I've looked at CEDET's semantic package, and it seems that it USED to have a bnf-mode, but not any more. This …
1
vote
2answers
92 views
EBNF for ECMAScript?
I'm trying to find a good EBNF description of ECMAScript, but so far I've not found anything complete.
Any ideas?
2
votes
5answers
110 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 …
0
votes
2answers
67 views
Bug in Gold Parser? LALR
Here is a piece of my bnf grammer.
//this works
<ter-stmnt> ::= <rval> '?' <rval> ':' <rval>
//this gets an error
<ter-stmnt> ::= <bool-val> '?' <rval> ':' …
6
votes
4answers
1k 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 declaration. So I decide to …
2
votes
2answers
49 views
what is the name of the convention used in this syntax diagram
I found this diagram in the JSON specification:
Where does this diagramming convention come from? Is it just some random convention cooked up by D.C.?
2
votes
1answer
536 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 to EBNF?
I believe …
0
votes
2answers
67 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 break it into literal …
0
votes
2answers
83 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:
<program> ::= …
2
votes
3answers
101 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 question which did …
3
votes
3answers
261 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 currently trying to write …
1
vote
2answers
134 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 XML?
Bonus: Using …
