Tagged Questions

Treetop is a Ruby parser generator for PEG grammars.

learn more… | top users | synonyms

12
votes
5answers
5k views

Learning Treetop

I'm trying to teach myself Ruby's Treetop grammar generator. I am finding that not only is the documentation woefully sparse for the "best" one out there, but that it doesn't seem to work as ...
7
votes
2answers
601 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 ...
5
votes
1answer
135 views

How to deal with Treetop left-recursion

I have a grammar file for a new general-purpose programming language I'm trying to build. I'm trying to make the language robust and natural to use (it is heavily inspired by Ruby, among others), and ...
5
votes
3answers
311 views

recognize Ruby code in Treetop grammar

I'm trying to use Treetop to parse an ERB file. I need to be able to handle lines like the following: <% ruby_code_here %> <%= other_ruby_code %> Since Treetop is written in Ruby, and ...
5
votes
4answers
701 views

Vim indenting file for Treetop (Ruby parser)

Has anyone seen a vim indent file for treetop, the Ruby parser/generator? I've found a vim syntax highlighting file, but haven't seen one for indentation.
5
votes
2answers
717 views

CSS/HSS Parser in Treetop and Nested Stylesheet Rules

I'm new to Treetop and attempting to write a CSS/HSS parser. HSS augments the basic functionality of CSS with nested styles, variables and a kind of mixin functionality. I'm pretty close - the parser ...
3
votes
1answer
93 views

Treetop parser : Function definition syntax - n arguments

Good morning everyone, I'm currently trying to describe some basic Ruby grammar but I'm now stuck with function definition. Indeed, I don't know how to handle 'n' argument. Here is the code I use to ...
3
votes
1answer
59 views

Whitespace in Treetop grammar

How explicit do I need to be when specifying were whitespace is or is not allowed? For instance would these rules: rule lambda 'lambda' ( '(' params ')' )? block end rule params # ... end rule ...
3
votes
2answers
197 views

Treetop grammar infinite loop

I have had some ideas for a new programming language floating around in my head, so I thought I'd take a shot at implementing it. A friend suggested I try using Treetop (the Ruby gem) to create a ...
3
votes
1answer
797 views

Treetop SGF Parsing

I am currently trying to write a Treetop grammar to parse Simple Game Format files, and have it mostly working so far. However, there are a few questions that have come up. I am unsure how to ...
2
votes
1answer
27 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 ...
2
votes
1answer
177 views

Could not find treetop-1.4.9 in any of the sources - cap deploy:migrate

I am running into an issue when trying to run migrations from capistrano (cap deploy:migrate). latest => /var/www/site/releases/20110108002015 * executing "cd ...
2
votes
1answer
114 views

RSpec test of Treetop parser output doesn't match when it should

I have this spec: it 'can parse armies with only section headers' do list = <<-LIST :Core :Special :Omgg :Moarheaders LIST expected_output = "## Core\n## Special\n## Omgg\n## ...
2
votes
1answer
670 views

best way to parse plain text file with a nested information structure

The text file has hundreds of these entries (format is MT940 bank statement) {1:F01AHHBCH110XXX0000000000}{2:I940X N2}{3:{108:XBS/091502}}{4: :20:XBS/091202/0001 :25:5887/507004-50 ...
2
votes
2answers
145 views

How to define {min,max} matches in treetop peg

With Ruby's regular expressions I could write /[0-9]{3,}/ I can't figure out how to write this in treetop other than: rule at_least_three_digit_number [0-9] [0-9] [0-9]+ end Is there a 'match [at ...
1
vote
0answers
9 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 ...
1
vote
1answer
51 views

Finding words in treetop - some matches not being made

I've run into a bit of a strange situation. I'm trying to parse measurements using treetop. For instance - 6' of 1/2" Copper Pipe of course, this can also be written as feet, Feet, inch, inches, ...
1
vote
1answer
108 views

Why is this returning an 'undefined method' error

I'm getting started with Treetop (though I don't think this is a treetop error) and I'm trying to parse a simple date field. I am trying to figure out if the date includes a month, and if so return ...
1
vote
1answer
87 views

Simplest treetop grammar is returning a parse error, just learning

I'm trying to learn treetop and was taking most of the code from https://github.com/survival/lordbishop for parsing names and was going to build from that. My structure is a bit different because ...
1
vote
1answer
51 views

I believe this should be one rule in Treetop

I have this working pair of rules in Treetop that the perfectionist in me believes should be one and only one rule, or maybe something more beautiful at least: rule _ crap / " "* end rule crap ...
1
vote
1answer
67 views

Recursive treetop is not working

I'm trying to create a parser using Treetop that is somewhat recursive. An expression can be a number but it also can be an addition of expressions, so I wrote this: grammar Language rule ...
1
vote
1answer
66 views

Access Associating Methods with Node in Treetop

With the grammar defined as below, why I keep get error while try to access the val method of nodes created by rule key? The error message is (eval):168:in `val': undefined local variable or method ...
1
vote
1answer
127 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 / ...
1
vote
0answers
186 views

matching tag pairs in Treetop grammar

I don't want a repeat of the Cthulhu answer, but I want to match up pairs of opening and closing HTML tags using Treetop. Using this grammar, I can match opening tags and closing tags, but now I want ...
1
vote
1answer
169 views

Problem with treetop grammar, not matching all options

I am writing a small, really simple lisp parser in ruby with the treetop gem just to experiment with it. However, it is not really working out how I want it to, and the documentation is pretty poor so ...
1
vote
2answers
588 views

Treetop basic parsing and regular expression usage

I'm developing a script using the ruby Treetop library and having issues working with its syntax for regex's. First off, many regular expressions that work in other settings dont work the same in ...
1
vote
3answers
347 views

Non-greedy matching in Treetop/PEG?

How would I do something like this in Treetop? /.+?;/ It seems like the only way is to do: [^;]+ ';' Which is kind of ugly.. any other way? .+? doesn't seem to work..
0
votes
1answer
49 views

Treetop: parsing string literals?

So, I am trying to learn me a bit of ruby, a bit of TDD and a bit of Treetop. I have the following grammar for parsing string literals: grammar Str rule string '"' ( !'"' . / '\"' ...
0
votes
2answers
38 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 | ...
0
votes
0answers
36 views

ActiveRecord sibling model is not an ActiveRecord object

I'm playing around with parsing some data using treetop. But I think I've run into a problem because my Parsing Model is a treetop model, and I'm calling it from within my FullDescription model which ...
0
votes
1answer
38 views

parsing fractions in treetop

I'm having a bit of difficulty parsing fractions in my treetop grammar. My grammar looks like this grammar Numbers rule number regular_number optional_frac { def value ...
0
votes
0answers
27 views

getting optional nodes from treetop grammar

I've got a treetop grammar where i have some optional values rule measurements def value number s? measure alternate_measure? { [:measurements, text_value] } ...
0
votes
0answers
40 views

treetop and mvc

I'm getting started with my first Treetop parsing project and rather than working in command line, I'm using rails, just a bit nicer to interact with, and I'll be working with a web interface in the ...
0
votes
1answer
121 views

parsing data and POS with treetop vs. stanford nlp

I'm trying to parse event (concerts, movies, etc. etc.) data in Ruby and can't decide on what tool to use. I thought the stanford parser was the way to go initially, but then heard of treetop. I'm ...
0
votes
2answers
253 views

“no such file to load — treetop/runtime” running “rake jobs:work”

when i try and run the "rails server" or "rake jobs:work" i get the error: "no such file to load -- treetop/runtime" full trace: macbook-pro-2:domain ryan$ rake jobs:work --trace(in ...
0
votes
1answer
160 views

Using ruby's treetop peg to parse a debian Packages.gz

I'm trying to break open a Packages.gz using Ruby's treetop and I've having trouble making keywords and values unambiguous. Here's my treetop grammar: grammar Debian rule collection entry+ ...
0
votes
1answer
102 views

Treetop: getting the offset of a node

I'm using Treetop to generate a parser for a small programming language. Upon successful parsing, I'd like to do some semantic analysis on the syntax tree. Ideally, whenever I encounter a piece of ...
0
votes
1answer
70 views

Treetop: parsing single node returns nil

I'm trying to get the basic of Treetop parsing. Here's a very simple bit of grammar so that I can say ArithmeticParser.parse('2+2').value == 4. grammar Arithmetic rule additive first:number '+' ...
0
votes
1answer
44 views

Can I 'unmatch' a rule programmatically in treetop?

Is it possibe to skip a rule by validating it using ruby code in treetop? Say there is something like this: rule short_words [a-z]+ { def method1 text_value end ... } end ...
0
votes
1answer
272 views

Parsing tcl arrays in ruby with treetop

I have a bunch of data in (what i think is) a tcl array. Basically it's in the form of {a {b c} d {e f} g}. It's only nested one deep, but isn't always nested, that is to say, a may just be a or it ...
0
votes
1answer
200 views

Treetop grammar issues using regular expressions

I have a simple grammar setup like so: grammar Test rule line (adjective / not_adjective)* { def content elements.map{|e| e.content } end } end ...
0
votes
1answer
118 views

Treetop: How to make combined rule?

I want to make a simple JSP parser by using Treetop. Now, I have the following problem: My basic grammar for starting is: grammar Jspgrammar rule jspToken '<%' end rule ...