treetop 1.2.1 → 1.2.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 +4 -0
- data/doc/site/contribute.html +7 -2
- data/doc/site/index.html +1 -1
- data/doc/site/pitfalls_and_advanced_techniques.html +1 -1
- data/doc/site/semantic_interpretation.html +1 -1
- data/doc/site/syntactic_recognition.html +1 -1
- data/doc/site/using_in_ruby.html +1 -1
- data/lib/treetop/compiler/metagrammar.rb +466 -404
- data/lib/treetop/compiler/metagrammar.treetop +1 -1
- data/lib/treetop/compiler/node_classes/atomic_expression.rb +3 -2
- data/lib/treetop/compiler/node_classes/character_class.rb +2 -6
- data/lib/treetop/runtime.rb +0 -2
- metadata +3 -5
- data/lib/treetop/runtime/node_cache.rb +0 -27
- data/lib/treetop/runtime/parse_cache.rb +0 -19
data/Rakefile
CHANGED
@@ -15,7 +15,7 @@ end
|
|
15
15
|
|
16
16
|
gemspec = Gem::Specification.new do |s|
|
17
17
|
s.name = "treetop"
|
18
|
-
s.version = "1.2.
|
18
|
+
s.version = "1.2.2"
|
19
19
|
s.author = "Nathan Sobo"
|
20
20
|
s.email = "nathansobo@gmail.com"
|
21
21
|
s.homepage = "http://functionalform.blogspot.com"
|
@@ -27,7 +27,7 @@ gemspec = Gem::Specification.new do |s|
|
|
27
27
|
s.require_path = "lib"
|
28
28
|
s.autorequire = "treetop"
|
29
29
|
s.has_rdoc = false
|
30
|
-
s.add_dependency "facets", "
|
30
|
+
s.add_dependency "facets", "=2.0.2"
|
31
31
|
s.add_dependency "polyglot"
|
32
32
|
end
|
33
33
|
|
@@ -1,3 +1,7 @@
|
|
1
|
+
#Google Group
|
2
|
+
I've created a <a href="http://groups.google.com/group/treetop-dev">Google Group</a> as a better place to organize discussion and development.
|
3
|
+
treetop-dev@google-groups.com
|
4
|
+
|
1
5
|
#Contributing
|
2
6
|
I like to try Rubinius's policy regarding commit rights. If you submit one patch worth integrating, I'll give you commit rights. We'll see how this goes, but I think it's a good policy.
|
3
7
|
|
data/doc/site/contribute.html
CHANGED
@@ -1,11 +1,16 @@
|
|
1
|
-
<html><head><link
|
1
|
+
<html><head><link type="text/css" href="./screen.css" rel="stylesheet" />
|
2
2
|
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
3
3
|
</script>
|
4
4
|
<script type="text/javascript">
|
5
5
|
_uacct = "UA-3418876-1";
|
6
6
|
urchinTracker();
|
7
7
|
</script>
|
8
|
-
</head><body><div id="top"><div id="main_navigation"><ul><li><a href="syntactic_recognition.html">Documentation</a></li><li>Contribute</li><li><a href="index.html">Home</a></li></ul></div></div><div id="middle"><div id="content"><h1>
|
8
|
+
</head><body><div id="top"><div id="main_navigation"><ul><li><a href="syntactic_recognition.html">Documentation</a></li><li>Contribute</li><li><a href="index.html">Home</a></li></ul></div></div><div id="middle"><div id="content"><h1>Google Group</h1>
|
9
|
+
|
10
|
+
<p>I've created a <a href="http://groups.google.com/group/treetop-dev">Google Group</a> as a better place to organize discussion and development.
|
11
|
+
treetop-dev@google-groups.com</p>
|
12
|
+
|
13
|
+
<h1>Contributing</h1>
|
9
14
|
|
10
15
|
<p>I like to try Rubinius's policy regarding commit rights. If you submit one patch worth integrating, I'll give you commit rights. We'll see how this goes, but I think it's a good policy.</p>
|
11
16
|
|
data/doc/site/index.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<html><head><link
|
1
|
+
<html><head><link type="text/css" href="./screen.css" rel="stylesheet" />
|
2
2
|
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
3
3
|
</script>
|
4
4
|
<script type="text/javascript">
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<html><head><link
|
1
|
+
<html><head><link type="text/css" href="./screen.css" rel="stylesheet" />
|
2
2
|
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
3
3
|
</script>
|
4
4
|
<script type="text/javascript">
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<html><head><link
|
1
|
+
<html><head><link type="text/css" href="./screen.css" rel="stylesheet" />
|
2
2
|
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
3
3
|
</script>
|
4
4
|
<script type="text/javascript">
|
@@ -1,4 +1,4 @@
|
|
1
|
-
<html><head><link
|
1
|
+
<html><head><link type="text/css" href="./screen.css" rel="stylesheet" />
|
2
2
|
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
3
3
|
</script>
|
4
4
|
<script type="text/javascript">
|
data/doc/site/using_in_ruby.html
CHANGED
@@ -1,4 +1,4 @@
|
|
1
|
-
<html><head><link
|
1
|
+
<html><head><link type="text/css" href="./screen.css" rel="stylesheet" />
|
2
2
|
<script src="http://www.google-analytics.com/urchin.js" type="text/javascript">
|
3
3
|
</script>
|
4
4
|
<script type="text/javascript">
|