citrus 2.3.5 → 2.3.6
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/lib/citrus.rb +5 -1
- data/lib/citrus/version.rb +1 -1
- data/test/memoized_input_test.rb +22 -1
- metadata +2 -2
data/lib/citrus.rb
CHANGED
@@ -308,7 +308,11 @@ module Citrus
|
|
308
308
|
|
309
309
|
if memo[position]
|
310
310
|
@cache_hits += 1
|
311
|
-
|
311
|
+
c = memo[position]
|
312
|
+
unless c.empty?
|
313
|
+
events.concat(c)
|
314
|
+
self.pos += events[-1]
|
315
|
+
end
|
312
316
|
else
|
313
317
|
index = events.size
|
314
318
|
rule.exec(self, events)
|
data/lib/citrus/version.rb
CHANGED
data/test/memoized_input_test.rb
CHANGED
@@ -26,7 +26,7 @@ class MemoizedInputTest < Test::Unit::TestCase
|
|
26
26
|
def test_cache_hits1
|
27
27
|
input = MemoizedInput.new('a')
|
28
28
|
input.exec(LetterA.rule(:top))
|
29
|
-
assert_equal(
|
29
|
+
assert_equal(3, input.cache_hits)
|
30
30
|
end
|
31
31
|
|
32
32
|
def test_cache_hits2
|
@@ -40,4 +40,25 @@ class MemoizedInputTest < Test::Unit::TestCase
|
|
40
40
|
input.exec(LetterA.rule(:top))
|
41
41
|
assert_equal(0, input.cache_hits)
|
42
42
|
end
|
43
|
+
|
44
|
+
grammar :LettersABC do
|
45
|
+
rule :top do
|
46
|
+
any(all(:a,:b,:c), all(:b,:a,:c), all(:b,:c,:a))
|
47
|
+
end
|
48
|
+
rule :a do
|
49
|
+
"a"
|
50
|
+
end
|
51
|
+
rule :b do
|
52
|
+
"b"
|
53
|
+
end
|
54
|
+
rule :c do
|
55
|
+
"c"
|
56
|
+
end
|
57
|
+
end
|
58
|
+
|
59
|
+
def test_memoization
|
60
|
+
match = LettersABC.parse('bca',{:memoize=>true})
|
61
|
+
assert_equal('bca',match)
|
62
|
+
end
|
63
|
+
|
43
64
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: citrus
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.6
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Michael Jackson
|
@@ -9,7 +9,7 @@ autorequire:
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2011-02-
|
12
|
+
date: 2011-02-19 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|