0
votes
1answer
50 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
91 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 …
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 …
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
93 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
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.?
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
2answers
84 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> ::= …
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 …
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 …
0
votes
2answers
63 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 …
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 …
2
votes
2answers
61 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 …
3
votes
3answers
264 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
6answers
435 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 something that could …
