0
votes
1answer
41 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
3answers
74 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
1answer
74 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
2answers
80 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
108 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 …
2
votes
2answers
45 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.?
0
votes
2answers
56 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
75 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> ::= …
1
vote
2answers
110 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
2answers
58 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 point, but I'm curious …
2
votes
2answers
59 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 have a pure spec of …
1
vote
2answers
129 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 …
2
votes
3answers
100 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
245 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 …
0
votes
2answers
65 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> ':' …
