Tagged Questions

5
votes
2answers
106 views

gppg/gplex equivalent in D?

When I was working in C#, I found the gppg and gplex parser/lexer generators to be perfect for my needs. I'm wondering if there's something similar for the D programming language (i.e. a utility that, ...
3
votes
2answers
115 views

How to capture a string without quote characters

I'm trying to capture quoted strings without the quotes. I have this terminal %token <string> STRING and this production constant: | QUOTE STRING QUOTE { String($2) } along with these ...
3
votes
3answers
322 views

Lexing and Parsing Utilities

I'm looking for lexical analysis and parser-generating utilities that are not Flex or Bison. Requirements: Parser is specified using a context-free LL(*) or GLR grammar. I would also consider PEGs. ...
3
votes
3answers
377 views

Best way to implement a meta language compiling down to PHP

I've been working on the specifikation / kitchensink for a meta language that can compile down to PHP for some time now. Now I want to begin building the thing. Before I have implemented tiny DSL's ...
3
votes
4answers
1k views

Generate C++ code for BNF grammar

I have looked at the following software tools: Ragel ANTLR BNF Converter Boost::Spirit Coco/R YACC ANTLR seems the most straight-forward, however its documentation is lacking. Ragel looks ...
2
votes
3answers
166 views

PHP Lexer and Parser Generator?

I know question Lex and Yacc in PHP was asked before but 1 year ago. Is there any new mature PHP parser generator now ? My searches drove me to the following ones, what do you think about them, any ...
2
votes
4answers
89 views

Is this the job of the lexer?

Let's say I was lexing a ruby method definition: def print_greeting(greeting = "hi") end Is it the lexer's job to maintain state and emit relevant tokens, or should it be relatively dumb? ...
2
votes
3answers
1k views

Expression parsing: how to tokenize

I'm looking to tokenize Java/Javascript-like expressions in javascript code. My input will be a string containing the expression, and the output needs to be an array of tokens. What's the best ...
1
vote
1answer
42 views

Why parser-generators instead of just configurable-parsers?

The title sums it up. Presumably anything that can be done with source-code-generating parser-generators (which essentially hard-code the grammar-to-be-parsed into the program) can be done with a ...
1
vote
0answers
92 views

Adding alternate syntax to clang

I ran across the SPECS alternate grammar for C++, and while I'm not sure I like some of the more gratuitous syntax changes they made (changing pointers from * to ^, for instance), it turned me on to ...
1
vote
1answer
309 views

Practical difference between parser rules and lexer rules in ANTLR?

I understand the theory behind separating parser rules and lexer rules in theory, but what are the practical differences between these two statements in ANTLR: my_rule: ... ; MY_RULE: ... ; Do ...
1
vote
3answers
267 views

Java Scanner with empty delimiter

I'd like to parse some text using an hand-written descending parser. I used Scanner with the following delimiter : "\\s*". Unfortunately, the fact that this pattern matches an empty String seems to ...
1
vote
1answer
667 views

How to get ANTLR to output hierarchical ASTs?

I have a Lua grammar, (minor modifications to get it to output for C#, just namespace directives and a couple of option changes) and when I run it on some sample input, it gives me back a tree with a ...
0
votes
1answer
15 views

How to get Coco/R parser to not be greedy

My ATG file defines a code block as Codeblock = "<#" {anychar} "#>" When the Coco generated parser comes across a block like this: <# a=5; print "Hello world!"; #> The token ...
0
votes
1answer
208 views

How to write a text transformer?

Suppose I have a text that I can easily parse. It consists of text and special identifiers. After parsing I get a list of tokens that correspond to text and special identifiers in the text. The ...