A “Parsing Expression Grammar” (“PEG”) is a formal language to describe formal languages.

learn more… | top users | synonyms

0
votes
0answers
38 views

buffer overflow when using peg/leg

I'm using Ian Piumarta's peg/leg software to parse a toy language that I'm working on. Unfortunately some inputs to the parser are causing a crash that Clang's address sanitizer says is caused by a ...
0
votes
0answers
26 views

parsley for extracting values from free form text?

I have free form text documents that I would like to extract things from. Here is a contrived example: 12345 Justification: JUST BECAUSE TO: Mommy FM: Kiddie TOPIC: this is just the way we do ...
0
votes
1answer
36 views

Is there a parser generator for ruby that can generate a parser with no gem dependencies?

In an effort to make a DSL I have written backwards-compatible with ruby 1.8 I need to do some (relatively straightforward) parsing on the source strings. I could probably do directly with string ...
0
votes
1answer
16 views

PEG Parsers: are “optional” and “one-or-more” rules necessary?

The Wikipedia article for PEG parsers defines the following combinators: 2.Given any existing parsing expressions e, e1, and e2, a new parsing expression can be constructed using the following ...
0
votes
2answers
33 views

PEGjs: Fallback (backtrack?) to string if floating point rule fail

I have an atom rule that tries to parse everything as either a number or a quoted string first, if that fails, then treat the thing as a string. Everything parses fine except one particular case that ...
1
vote
1answer
92 views

Parsing significant whitespace with a PEG in Python (specificly Parsley)

I'm creating a syntax that supports significant whitespace (most like the "Z" lisp variant than Python or yaml, but same idea) I came across this article on how to do significant whitespace parsing ...
3
votes
1answer
78 views

Parsing boolean expression without left hand recursion

I'm trying to match this f(some_thing) == 'something else' f(some_thing) is a function call, which is an expression == is a boolean operator 'something else' is a string, which also is an ...
1
vote
1answer
112 views

How do I DRY this PEGjs rule?

the following works just fine for what I'm trying to do, but it's obviously very repetitive. It should match the following examples: #id.class1.class2 attr="asdsa" .class1.class2 attr="asdsad" ...
1
vote
1answer
30 views

BBCode Treetop parser and smart tag closing?

I have written a treetop grammer file that mostly works. For tags like [b] I want to pass them into a function that has a hash of configured BBCodes for that forum. If bold was allowed it would return ...
5
votes
3answers
247 views

Implementing “cut” in a recursive descent parser

I'm implementing a PEG parser generator in Python, and I've had success so far, except with the "cut" feature, of which whomever knows Prolog must know about. The idea is that after a cut (!) symbol ...
1
vote
0answers
89 views

PEG-php parsing if statement

Good day. Just started to use PEG. I'm familiar with wp:peg and some other theory, but still can't understand how it internally works. My task is to parse expressions like if($a=='qwerty' && ...
0
votes
2answers
86 views

pyPEG2: what is wrong with PEG grammar for 'f(x)'?

Yet another what is wrong with this grammar question: I am playing with pyPEG2 by Volker Birk and I am stuck with a very trivial case: from pypeg2 import * text = 'f(x)' grammar = name, '(' , ...
1
vote
1answer
237 views

Eliminate Left Recursion on this PEG.js grammar

(Note: I've read other questions like this, but I haven't been able to figure this out). I wrote this grammar: start = call ident = [a-z]+ spaces = [ ]+ call = f:ident spaces g:(call / ident) { ...
2
votes
1answer
95 views

Generated parser throws error for escaped quotes on Node.js

I am using PEG.js to create a parser which includes parsing strings. The strings containing any kind of character are wrapped by quotes " and may contain escaped quotes \". So far I have the following ...
0
votes
0answers
34 views

Looking for a sensible formalism for PEG-like destructuring bind on unordered maps

I am currently investigating using PEG semantics as a basis for generic destructuring bind, an idea I picked up from Ometa. I am fond of the general thrust of this. One area I've run into trouble in ...
2
votes
1answer
67 views

Is there a well-defined and well-reasoned transformation from LL(*) to PEG?

I am in the process of investigating PEG (Parsing Expression Grammar) parsers, and one of the topics I'm looking into is equivalence with other parsing techniques. I found a good paper about ...
1
vote
1answer
53 views

Treetop backtracking similar to regex?

Everything I've read suggests Treetop backtracks like regular expressions, but I'm having a hard time making that work. Suppose I have the following grammar: grammar TestGrammar rule open_close ...
2
votes
1answer
162 views

Rectangular Peg Solitaire in Prolog?

possible quick question here since I'm new to Prolog. I'm trying to convert this code for solving a triangular peg solitaire puzzle into solving a rectangular peg solitaire puzzle. The problem I think ...
1
vote
1answer
176 views

Trouble with PEG.js end of input

I am trying to write a simple grammer for PEG.js that would match something like this: some text; arbitrary other text that can also have µnicode; different expression; let's escape the \; semicolon, ...
1
vote
1answer
102 views

Matching plural words in Treetop

Is there a way to programmatically match plural words using Treetop. The Linguistics gem will pluralize a word, but how can that be inserted back into the parser. Here's an example of what I'm trying ...
3
votes
1answer
155 views

How do I parse this with peg grammar?

I'm trying to make a parser using pegjs. I need to parse something like: blah blah START Lorem ipsum dolor sit amet, consectetur adipiscing elit END foo bar etc. I have trouble writing the rule ...
1
vote
1answer
154 views

Is it possible to create a very permissive grammar using Menhir?

I'm trying to parse some bits and pieces of Verilog - I'm primarily interested in extracting module definitions and instantiations. In verilog a module is defined like: module foo ( ... ) endmodule; ...
2
votes
1answer
129 views

How can I avoid left-recursion in treetop without backtracking?

I am having trouble avoiding left-recursion in this simple expression parser I'm working on. Essentially, I want to parse the equation 'f x y' into two expressions 'f x' and '(f x) y' (with implicit ...
4
votes
1answer
135 views

Parsing trouble with amotoen

I'm trying to write a grammar to parse a simple language to describe drum loops, using Clojure and amotoen. The language looks like this:– # Test Loop # this is a comment BPM: 100 Samples: BD: ...
1
vote
2answers
692 views

Who is faster: PEG or GLR?

I'm trying to create some kind of lint tool for the C/AL programming language. So basically I need to perform syntax and lexical analysis against the source code. I've planned to write parser from the ...
1
vote
1answer
86 views

Parsing a reserved word in Parsing Expressive Grammar (PEG.js)

The similar question and the author's website give me solutions like this: Identifier "identifier" = !ReservedWord [A-Za-z_]+ ReservedWord = "test" / "abc" This solution can't parse an ...
2
votes
1answer
302 views

Parse indentation level with PEG.js

I have essentially the same question as PEG for Python style indentation, but I'd like to get a little more direction regarding this answer. The answer successfully generates an array of strings that ...
4
votes
1answer
681 views

Performance of parsers: PEG vs LALR(1) or LL(k)

I've seen some claims that optimized PEG parsers in general cannot be faster than optimized LALR(1) or LL(k) parsers. (Of course, performance of parsing would depend on a particular grammar.) I'd ...
2
votes
3answers
357 views

Using PEG Parser for BBCode Parsing: pegjs or … what?

I have a bbcode -> html converter that responds to the change event in a textarea. Currently, this is done using a series of regular expressions, and there are a number of pathological cases. I've ...
0
votes
1answer
140 views

PEG grammar to parse optional content

Can anyone tell me how to write syntax on Treetop that supports both: system u AAA1 car=5, motor=4 and system u car=5, motor=4
3
votes
2answers
301 views

PEG and whitespace/comments

I have some experience writing parsers with ANTLR and I am trying (for self-education :) ) to port one of them to PEG (Parsing Expression Grammar). As I am trying to get a feel for the idea, one ...
3
votes
1answer
252 views

Left factorisation in Parsing Expression Grammar

I’m trying to write a grammar for a language which allows the following expressions: Function calls of the form f args (note: no parentheses!) Addition (and more complex expressions but that’s not ...
2
votes
1answer
193 views

LPeg grammar oddity

Part of a Lua application of mine is a search bar, and I'm trying to make it understand boolean expressions. I'm using LPeg, but the current grammar gives a strange result: > re, yajl = ...
1
vote
1answer
56 views

What is the ellipsis (empty string) used for in a Treetop(PEG) grammar?

The Treetop website gives the following explanation that I don't understand Ellipsis An empty string matches at any position and consumes no input. It's useful when you wish to treat a single ...
4
votes
1answer
569 views

Ignore whitespace with PEG.js

I want to ignore whitespaces and new lines with my grammar so they are missing in the PEG.js output. Also, a literal within brackets should be returned in a new array. Grammar start = 'a'? sep+ ...
3
votes
1answer
97 views

simplest rules in treetop not working

I have a treetop grammar with only two rules: grammar RCFAE rule num [0-9]+ <Num> end rule identifier [a-zA-Z] [a-zA-Z]* <ID> end end I'm trying to ...
1
vote
0answers
381 views

Using LPEG (Lua Parser Expression Grammars) like boost::spirit

So I am playing with lpeg to replace a boost spirit grammar, I must say boost::spirit is far more elegant and natural than lpeg. However it is a bitch to work with due to the constraints of current ...
0
votes
3answers
111 views

Making BBcode parser with PEG problem

I am making bbcode parser with PEG (Citrus implementation for Ruby) and I am stuck on parsing this [b]sometext[anothertext[/b] There is code grammar BBCodeParser rule document (open_tag | ...
8
votes
1answer
398 views

CFG / PEG used for Code completion?

I'm wondering if it's possible to use a CFG or PEG grammar as a basis for code completion directly without modification. I have heard that code completion is in IDE's is sometimes manipulated and ...
3
votes
1answer
75 views

Is this description of alternatives in regexes wrong?

The wikipedia article on PEG states: The fundamental difference between context-free grammars and parsing expression grammars is that the PEG's choice operator is ordered. If the first ...
5
votes
1answer
183 views

What is the role of the Empty production for PEGs?

The empty production rule nonterminal -> epsilon is useful in lex-yacc LR bottom up parser generators (e.g. PLY). In what context should one use Empty productions in PEG parsers e.g. pyparsing ...
2
votes
1answer
267 views

Are there PEG-based parser generators that support left recursion?

Left recursion seems to be a big problem for many parser generators that are built upon the foundations of recursive descent parsing. I'm looking for a PEG-based parser generator that supports it - in ...
3
votes
1answer
104 views

Need confirmation about PEG's semantic predicates in pyparsing

The PEG paper describes two semantic predicate parsing expressions: And predicate &e Not predicate !e Does pyparsing support the And predicate ? Or is that just a synonym for the sequencing ...
10
votes
2answers
686 views

What are the differences between PEGs and CFGs?

From this wikipedia page: The fundamental difference between context-free grammars and parsing expression grammars is that the PEG's choice operator is ordered. If the first alternative ...
1
vote
2answers
393 views

PEG parser library on Windows OS

Are there any Parsing Expression Grammar (PEG) C++ libraries for Windows? I've tried in vain to compile pegc/legc, pegc with MS Visual Studio. :(
1
vote
1answer
184 views

Treetop ruby parser - could not parse Ordered Choice

I have defined simple grammar for parsing string and number using Treetop as below. grammar Simple rule value number / string end rule string word space string / ...
5
votes
2answers
515 views

Any PEG parser capable to handle left recursion?

Well, I know it's possible to rewrite the grammar to eliminate left recursion. But this is a very boring process, and sometimes it's very nontrivial to keep correct associativity. Is there any parser ...
15
votes
3answers
2k views

PEG for Python style indentation

How would you write a Parsing Expression Grammar in any of the following Parser Generators (PEG.js, Citrus, Treetop) which can handle Python/Haskell/CoffeScript style indentation: Examples of a not ...
1
vote
3answers
275 views

What is the best way to define grammars for a text editor?

I'm masochistically writing an open-source text editor for Mac and have finally reached the point at which I want to add syntax highlighting. I've been going back and forth on various solutions for ...
9
votes
1answer
2k views

Limitations of PEG grammar & parser generators?

I was enjoying using YARD a lot: http://www.ootl.org/yard/ http://code.google.com/p/yardparser/ http://www.codeproject.com/KB/recipes/yard-tokenizer.aspx I was able to construct fully functional ...

1 2