treetop 1.1.1 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/Rakefile +2 -2
- data/doc/contributing_and_planned_features.markdown +106 -0
- data/doc/grammar_composition.markdown +65 -0
- data/doc/images/paren_language_output.png +0 -0
- data/doc/index.markdown +24 -0
- data/doc/pitfalls_and_advanced_techniques.markdown +51 -0
- data/doc/semantic_interpretation.markdown +187 -0
- data/doc/syntactic_recognition.markdown +103 -0
- data/doc/using_in_ruby.markdown +17 -0
- data/examples/lambda_calculus/lambda_calculus +0 -0
- data/examples/lambda_calculus/lambda_calculus.rb +751 -0
- data/examples/lambda_calculus/lambda_calculus.treetop +0 -1
- metadata +12 -1
metadata
CHANGED
@@ -3,7 +3,7 @@ rubygems_version: 0.9.2
|
|
3
3
|
specification_version: 1
|
4
4
|
name: treetop
|
5
5
|
version: !ruby/object:Gem::Version
|
6
|
-
version: 1.1.
|
6
|
+
version: 1.1.2
|
7
7
|
date: 2007-11-05 00:00:00 -08:00
|
8
8
|
summary: A Ruby-based text parsing and interpretation DSL
|
9
9
|
require_paths:
|
@@ -145,11 +145,22 @@ files:
|
|
145
145
|
- lib/treetop/runtime/terminal_parse_failure.rb
|
146
146
|
- lib/treetop/runtime/terminal_syntax_node.rb
|
147
147
|
- bin/tt
|
148
|
+
- doc/contributing_and_planned_features.markdown
|
149
|
+
- doc/grammar_composition.markdown
|
150
|
+
- doc/images
|
151
|
+
- doc/index.markdown
|
152
|
+
- doc/pitfalls_and_advanced_techniques.markdown
|
153
|
+
- doc/semantic_interpretation.markdown
|
154
|
+
- doc/syntactic_recognition.markdown
|
155
|
+
- doc/using_in_ruby.markdown
|
156
|
+
- doc/images/paren_language_output.png
|
148
157
|
- examples/lambda_calculus
|
149
158
|
- examples/TALK
|
150
159
|
- examples/lambda_calculus/arithmetic.treetop
|
151
160
|
- examples/lambda_calculus/arithmetic_node_classes.rb
|
152
161
|
- examples/lambda_calculus/arithmetic_test.rb
|
162
|
+
- examples/lambda_calculus/lambda_calculus
|
163
|
+
- examples/lambda_calculus/lambda_calculus.rb
|
153
164
|
- examples/lambda_calculus/lambda_calculus.treetop
|
154
165
|
- examples/lambda_calculus/lambda_calculus_node_classes.rb
|
155
166
|
- examples/lambda_calculus/lambda_calculus_test.rb
|