rley 0.6.00 → 0.6.01
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.rubocop.yml +8 -1
- data/CHANGELOG.md +3 -0
- data/Gemfile +1 -1
- data/examples/NLP/benchmark_pico_en.rb +6 -10
- data/examples/NLP/nano_eng/nano_en_demo.rb +2 -2
- data/examples/NLP/nano_eng/nano_grammar.rb +1 -2
- data/examples/data_formats/JSON/json_ast_builder.rb +8 -8
- data/examples/general/SRL/lib/ast_builder.rb +74 -72
- data/examples/general/SRL/lib/grammar.rb +2 -2
- data/examples/general/SRL/lib/regex/abstract_method.rb +28 -28
- data/examples/general/SRL/lib/regex/alternation.rb +21 -25
- data/examples/general/SRL/lib/regex/anchor.rb +6 -9
- data/examples/general/SRL/lib/regex/atomic_expression.rb +10 -15
- data/examples/general/SRL/lib/regex/capturing_group.rb +15 -14
- data/examples/general/SRL/lib/regex/char_class.rb +10 -13
- data/examples/general/SRL/lib/regex/char_range.rb +45 -46
- data/examples/general/SRL/lib/regex/char_shorthand.rb +8 -9
- data/examples/general/SRL/lib/regex/character.rb +196 -191
- data/examples/general/SRL/lib/regex/compound_expression.rb +47 -50
- data/examples/general/SRL/lib/regex/concatenation.rb +23 -27
- data/examples/general/SRL/lib/regex/expression.rb +53 -56
- data/examples/general/SRL/lib/regex/lookaround.rb +23 -20
- data/examples/general/SRL/lib/regex/match_option.rb +26 -28
- data/examples/general/SRL/lib/regex/monadic_expression.rb +20 -23
- data/examples/general/SRL/lib/regex/multiplicity.rb +17 -20
- data/examples/general/SRL/lib/regex/non_capturing_group.rb +9 -12
- data/examples/general/SRL/lib/regex/polyadic_expression.rb +51 -55
- data/examples/general/SRL/lib/regex/quantifiable.rb +14 -20
- data/examples/general/SRL/lib/regex/repetition.rb +20 -23
- data/examples/general/SRL/lib/regex/wildcard.rb +15 -19
- data/examples/general/SRL/lib/regex_repr.rb +1 -1
- data/examples/general/SRL/lib/tokenizer.rb +2 -2
- data/examples/general/SRL/spec/integration_spec.rb +17 -12
- data/examples/general/SRL/spec/regex/character_spec.rb +160 -153
- data/examples/general/SRL/spec/regex/multiplicity_spec.rb +27 -31
- data/examples/general/SRL/spec/spec_helper.rb +1 -1
- data/examples/general/SRL/spec/tokenizer_spec.rb +25 -27
- data/examples/general/calc_iter1/calc_ast_builder.rb +10 -10
- data/examples/general/calc_iter2/calc_ast_builder.rb +7 -9
- data/examples/general/calc_iter2/calc_ast_nodes.rb +5 -6
- data/examples/general/calc_iter2/calc_lexer.rb +3 -5
- data/examples/general/calc_iter2/spec/calculator_spec.rb +16 -14
- data/examples/general/left.rb +8 -8
- data/examples/general/right.rb +8 -8
- data/lib/rley/constants.rb +1 -1
- data/lib/rley/engine.rb +16 -20
- data/lib/rley/formatter/json.rb +1 -1
- data/lib/rley/gfg/grm_flow_graph.rb +1 -1
- data/lib/rley/gfg/item_vertex.rb +6 -5
- data/lib/rley/gfg/vertex.rb +3 -3
- data/lib/rley/lexical/token.rb +4 -3
- data/lib/rley/parse_rep/ast_base_builder.rb +4 -3
- data/lib/rley/parse_rep/parse_rep_creator.rb +1 -1
- data/lib/rley/parse_rep/parse_tree_builder.rb +3 -2
- data/lib/rley/parser/error_reason.rb +1 -1
- data/lib/rley/parser/gfg_chart.rb +6 -6
- data/lib/rley/parser/gfg_parsing.rb +19 -19
- data/lib/rley/parser/parse_entry.rb +3 -3
- data/lib/rley/parser/parse_entry_set.rb +1 -1
- data/lib/rley/parser/parse_walker_factory.rb +15 -15
- data/lib/rley/syntax/grammar.rb +1 -1
- data/lib/rley/syntax/grammar_builder.rb +2 -2
- data/lib/rley/syntax/production.rb +4 -3
- data/lib/rley/syntax/symbol_seq.rb +2 -2
- data/spec/rley/base/grm_items_builder_spec.rb +1 -1
- data/spec/rley/engine_spec.rb +3 -6
- data/spec/rley/formatter/asciitree_spec.rb +0 -1
- data/spec/rley/formatter/bracket_notation_spec.rb +0 -1
- data/spec/rley/formatter/debug_spec.rb +2 -3
- data/spec/rley/gfg/grm_flow_graph_spec.rb +19 -19
- data/spec/rley/parse_rep/ast_builder_spec.rb +12 -12
- data/spec/rley/parser/gfg_earley_parser_spec.rb +1 -1
- data/spec/rley/parser/parse_entry_set_spec.rb +5 -5
- data/spec/rley/parser/parse_state_spec.rb +8 -3
- data/spec/rley/parser/parse_tracer_spec.rb +3 -1
- data/spec/rley/parser/parse_walker_factory_spec.rb +1 -1
- data/spec/rley/ptree/parse_tree_node_spec.rb +1 -1
- data/spec/rley/syntax/grammar_builder_spec.rb +1 -1
- data/spec/rley/syntax/grammar_spec.rb +1 -1
- metadata +2 -3
- data/spec/rley/support/ast_builder.rb +0 -403
@@ -18,7 +18,9 @@ module Rley # Open this namespace to avoid module qualifier prefixes
|
|
18
18
|
|
19
19
|
let(:token_seq) do
|
20
20
|
literals = %w[I saw John with a dog]
|
21
|
-
literals.map
|
21
|
+
literals.map do |lexeme|
|
22
|
+
Lexical::Token.new(lexeme, double('fake-terminal'))
|
23
|
+
end
|
22
24
|
end
|
23
25
|
|
24
26
|
subject { ParseTracer.new(1, output, token_seq) }
|
@@ -163,7 +163,7 @@ module Rley # Open this namespace to avoid module qualifier prefixes
|
|
163
163
|
event_expectations(event17, expectations)
|
164
164
|
|
165
165
|
event18 = walker.next
|
166
|
-
expectations = [:revisit, 'T. | 1', 4]
|
166
|
+
expectations = [:revisit, 'T. | 1', 4] # Re-visiting end vertex
|
167
167
|
event_expectations(event18, expectations)
|
168
168
|
|
169
169
|
# No lazy walk: don't jump directly after corresponding start vertex
|
@@ -13,7 +13,7 @@ module Rley # Open this namespace to avoid module qualifier prefixes
|
|
13
13
|
|
14
14
|
context 'Initialization:' do
|
15
15
|
it 'should be created with a symbol and a range' do
|
16
|
-
args = [
|
16
|
+
args = [sample_symbol, sample_range]
|
17
17
|
expect { ParseTreeNode.new(*args) }.not_to raise_error
|
18
18
|
end
|
19
19
|
|
@@ -95,7 +95,7 @@ module Rley # Open this namespace to avoid module qualifier prefixes
|
|
95
95
|
expect(subject.productions.size).to eq(2)
|
96
96
|
new_prod = subject.productions.last
|
97
97
|
expect(new_prod.lhs).to eq(subject['A'])
|
98
|
-
expect_rhs = [
|
98
|
+
expect_rhs = [subject['a'], subject['A'], subject['c']]
|
99
99
|
expect(new_prod.rhs.members).to eq(expect_rhs)
|
100
100
|
|
101
101
|
# GrammarBuilder#rule is an alias of add_production
|
@@ -60,7 +60,7 @@ module Rley # Open this namespace to avoid module qualifier prefixes
|
|
60
60
|
alternate_prods(term, alternatives)
|
61
61
|
end
|
62
62
|
let(:expression_prods) do
|
63
|
-
alternatives = [
|
63
|
+
alternatives = [[term], [expression, add_op, term]]
|
64
64
|
alternate_prods(expression, alternatives)
|
65
65
|
end
|
66
66
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rley
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.6.
|
4
|
+
version: 0.6.01
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dimitri Geshef
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-02
|
11
|
+
date: 2018-03-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: coveralls
|
@@ -303,7 +303,6 @@ files:
|
|
303
303
|
- spec/rley/sppf/non_terminal_node_spec.rb
|
304
304
|
- spec/rley/sppf/token_node_spec.rb
|
305
305
|
- spec/rley/support/ambiguous_grammar_helper.rb
|
306
|
-
- spec/rley/support/ast_builder.rb
|
307
306
|
- spec/rley/support/expectation_helper.rb
|
308
307
|
- spec/rley/support/grammar_abc_helper.rb
|
309
308
|
- spec/rley/support/grammar_ambig01_helper.rb
|
@@ -1,403 +0,0 @@
|
|
1
|
-
require 'stringio'
|
2
|
-
require_relative 'ast_building'
|
3
|
-
require_relative 'regex_repr'
|
4
|
-
|
5
|
-
# The purpose of a ASTBuilder is to build piece by piece an AST
|
6
|
-
# (Abstract Syntax Tree) from a sequence of input tokens and
|
7
|
-
# visit events produced by walking over a GFGParsing object.
|
8
|
-
# Uses the Builder GoF pattern.
|
9
|
-
# The Builder pattern creates a complex object
|
10
|
-
# (say, a parse tree) from simpler objects (terminal and non-terminal
|
11
|
-
# nodes) and using a step by step approach.
|
12
|
-
class ASTBuilder < Rley::Parser::ParseTreeBuilder
|
13
|
-
include ASTBuilding
|
14
|
-
|
15
|
-
Terminal2NodeClass = { }.freeze
|
16
|
-
|
17
|
-
attr_reader :options
|
18
|
-
|
19
|
-
protected
|
20
|
-
|
21
|
-
# Overriding method.
|
22
|
-
# Factory method for creating a node object for the given
|
23
|
-
# input token.
|
24
|
-
# @param aTerminal [Terminal] Terminal symbol associated with the token
|
25
|
-
# @param aTokenPosition [Integer] Position of token in the input stream
|
26
|
-
# @param aToken [Token] The input token
|
27
|
-
def new_leaf_node(aProduction, aTerminal, aTokenPosition, aToken)
|
28
|
-
node = Rley::PTree::TerminalNode.new(aToken, aTokenPosition)
|
29
|
-
|
30
|
-
return node
|
31
|
-
end
|
32
|
-
|
33
|
-
# Method to override.
|
34
|
-
# Factory method for creating a parent node object.
|
35
|
-
# @param aProduction [Production] Production rule
|
36
|
-
# @param aRange [Range] Range of tokens matched by the rule
|
37
|
-
# @param theTokens [Array] The input tokens
|
38
|
-
# @param theChildren [Array] Children nodes (one per rhs symbol)
|
39
|
-
def new_parent_node(aProduction, aRange, theTokens, theChildren)
|
40
|
-
short_name = aProduction.name
|
41
|
-
method_name = 'reduce_' + short_name
|
42
|
-
if self.respond_to?(method_name, true)
|
43
|
-
node = send(method_name, aProduction, aRange, theTokens, theChildren)
|
44
|
-
else
|
45
|
-
# Default action...
|
46
|
-
node = case aProduction.rhs.size
|
47
|
-
when 0
|
48
|
-
nil
|
49
|
-
when 1
|
50
|
-
return_first_child(aRange, theTokens, theChildren)
|
51
|
-
else
|
52
|
-
raise StandardError, "Don't know production '#{aProduction.name}'"
|
53
|
-
end
|
54
|
-
end
|
55
|
-
return node
|
56
|
-
end
|
57
|
-
|
58
|
-
def multiplicity(lowerBound, upperBound)
|
59
|
-
return SRL::Regex::Multiplicity.new(lowerBound, upperBound, :greedy)
|
60
|
-
end
|
61
|
-
|
62
|
-
def string_literal(aString, to_escape = true)
|
63
|
-
if aString.size > 1
|
64
|
-
chars = []
|
65
|
-
aString.each_char do |ch|
|
66
|
-
if to_escape && Regex::Character::MetaChars.include?(ch)
|
67
|
-
chars << Regex::Character.new("\\")
|
68
|
-
end
|
69
|
-
chars << Regex::Character.new(ch)
|
70
|
-
end
|
71
|
-
result = Regex::Concatenation.new(*chars)
|
72
|
-
else
|
73
|
-
if to_escape && Regex::Character::MetaChars.include?(aString)
|
74
|
-
result = Regex::Concatenation.new(Regex::Character.new("\\"),
|
75
|
-
Regex::Character.new(aString))
|
76
|
-
else
|
77
|
-
result = Regex::Character.new(aString)
|
78
|
-
end
|
79
|
-
end
|
80
|
-
|
81
|
-
return result
|
82
|
-
end
|
83
|
-
|
84
|
-
def char_range(lowerBound, upperBound)
|
85
|
-
# TODO fix module nesting
|
86
|
-
lower = Regex::Character.new(lowerBound)
|
87
|
-
upper = Regex::Character.new(upperBound)
|
88
|
-
return Regex::CharRange.new(lower, upper)
|
89
|
-
end
|
90
|
-
|
91
|
-
def char_class(toNegate, *theChildren)
|
92
|
-
Regex::CharClass.new(toNegate, *theChildren)
|
93
|
-
end
|
94
|
-
|
95
|
-
def char_shorthand(shortName)
|
96
|
-
Regex::CharShorthand.new(shortName)
|
97
|
-
end
|
98
|
-
|
99
|
-
def wildcard()
|
100
|
-
Regex::Wildcard.new
|
101
|
-
end
|
102
|
-
|
103
|
-
def repetition(expressionToRepeat, aMultiplicity)
|
104
|
-
return Regex::Repetition.new(expressionToRepeat, aMultiplicity)
|
105
|
-
end
|
106
|
-
|
107
|
-
def begin_anchor
|
108
|
-
return Regex::Anchor.new('^')
|
109
|
-
end
|
110
|
-
|
111
|
-
# rule('expression' => %w[pattern separator flags]).as 'flagged_expr'
|
112
|
-
def reduce_flagged_expr(aProduction, aRange, theTokens, theChildren)
|
113
|
-
@options = theChildren[2] if theChildren[2]
|
114
|
-
return_first_child(aRange, theTokens, theChildren)
|
115
|
-
end
|
116
|
-
|
117
|
-
# rule('pattern' => %w[pattern separator quantifiable]).as 'pattern_sequence'
|
118
|
-
def reduce_pattern_sequence(aProduction, aRange, theTokens, theChildren)
|
119
|
-
return Regex::Concatenation.new(theChildren[0], theChildren[2])
|
120
|
-
end
|
121
|
-
|
122
|
-
# rule('flags' => %[flags separator single_flag]).as 'flag_sequence'
|
123
|
-
def reduce_flag_sequence(aProduction, aRange, theTokens, theChildren)
|
124
|
-
theChildren[0] << theChildren[2]
|
125
|
-
end
|
126
|
-
|
127
|
-
# rule('single_flag' => %w[CASE INSENSITIVE]).as 'case_insensitive'
|
128
|
-
def reduce_case_insensitive(aProduction, aRange, theTokens, theChildren)
|
129
|
-
return [ Regex::MatchOption.new(:IGNORECASE, true) ]
|
130
|
-
end
|
131
|
-
|
132
|
-
# rule('single_flag' => %w[MULTI LINE]).as 'multi_line'
|
133
|
-
def reduce_multi_line(aProduction, aRange, theTokens, theChildren)
|
134
|
-
return [ Regex::MatchOption.new(:MULTILINE, true) ]
|
135
|
-
end
|
136
|
-
|
137
|
-
# rule('single_flag' => %w[ALL LAZY]).as 'all_lazy'
|
138
|
-
def reduce_all_lazy(aProduction, aRange, theTokens, theChildren)
|
139
|
-
return [ Regex::MatchOption.new(:ALL_LAZY, true) ]
|
140
|
-
end
|
141
|
-
|
142
|
-
# rule 'quantifiable' => %w[begin_anchor anchorable end_anchor]
|
143
|
-
def reduce_pinned_quantifiable(aProduction, aRange, theTokens, theChildren)
|
144
|
-
theChildren[1].begin_anchor = theChildren[0]
|
145
|
-
theChildren[1].end_anchor = theChildren[2]
|
146
|
-
return theChildren[1]
|
147
|
-
end
|
148
|
-
|
149
|
-
# rule 'quantifiable' => %w[begin_anchor anchorable]
|
150
|
-
def reduce_begin_anchor_quantifiable(aProduction, aRange, theTokens, theChildren)
|
151
|
-
theChildren[1].begin_anchor = theChildren[0]
|
152
|
-
return theChildren[1]
|
153
|
-
end
|
154
|
-
|
155
|
-
# rule 'quantifiable' => %w[anchorable end_anchor]
|
156
|
-
def reduce_end_anchor_quantifiable(aProduction, aRange, theTokens, theChildren)
|
157
|
-
theChildren[0].end_anchor = theChildren[1]
|
158
|
-
return theChildren[0]
|
159
|
-
end
|
160
|
-
|
161
|
-
# rule 'begin_anchor' => %w[STARTS WITH]
|
162
|
-
def reduce_starts_with(aProduction, aRange, theTokens, theChildren)
|
163
|
-
begin_anchor
|
164
|
-
end
|
165
|
-
|
166
|
-
# rule 'begin_anchor' => %w[BEGIN WITH]
|
167
|
-
def reduce_begin_with(aProduction, aRange, theTokens, theChildren)
|
168
|
-
begin_anchor
|
169
|
-
end
|
170
|
-
|
171
|
-
# rule 'end_anchor' => %w[MUST END].as 'end_anchor'
|
172
|
-
def reduce_end_anchor(aProduction, aRange, theTokens, theChildren)
|
173
|
-
return Regex::Anchor.new('$')
|
174
|
-
end
|
175
|
-
|
176
|
-
# rule('anchorable' => %w[assertable assertion]).as 'asserted_anchorable'
|
177
|
-
def reduce_asserted_anchorable(aProduction, aRange, theTokens, theChildren)
|
178
|
-
assertion = theChildren.last
|
179
|
-
assertion.children.unshift(theChildren[0])
|
180
|
-
return assertion
|
181
|
-
end
|
182
|
-
|
183
|
-
# rule('assertion' => %w[IF FOLLOWED BY assertable]).as 'if_followed'
|
184
|
-
def reduce_if_followed(aProduction, aRange, theTokens, theChildren)
|
185
|
-
return Regex::Lookaround.new(theChildren.last, :ahead, :positive)
|
186
|
-
end
|
187
|
-
|
188
|
-
# rule('assertion' => %w[IF NOT FOLLOWED BY assertable]).as 'if_not_followed'
|
189
|
-
def reduce_if_not_followed(aProduction, aRange, theTokens, theChildren)
|
190
|
-
return Regex::Lookaround.new(theChildren.last, :ahead, :negative)
|
191
|
-
end
|
192
|
-
|
193
|
-
# rule('assertion' => %w[IF ALREADY HAD assertable]).as 'if_had'
|
194
|
-
def reduce_if_had(aProduction, aRange, theTokens, theChildren)
|
195
|
-
return Regex::Lookaround.new(theChildren.last, :behind, :positive)
|
196
|
-
end
|
197
|
-
|
198
|
-
# rule('assertion' => %w[IF NOT ALREADY HAD assertable]).as 'if_not_had'
|
199
|
-
def reduce_if_not_had(aProduction, aRange, theTokens, theChildren)
|
200
|
-
return Regex::Lookaround.new(theChildren.last, :behind, :negative)
|
201
|
-
end
|
202
|
-
|
203
|
-
# rule('assertable' => %w[term quantifier]).as 'quantified_assertable'
|
204
|
-
def reduce_quantified_assertable(aProduction, aRange, theTokens, theChildren)
|
205
|
-
quantifier = theChildren[1]
|
206
|
-
term = theChildren[0]
|
207
|
-
repetition(term, quantifier)
|
208
|
-
end
|
209
|
-
|
210
|
-
# rule('letter_range' => %w[LETTER FROM LETTER_LIT TO LETTER_LIT]).as 'lowercase_from_to'
|
211
|
-
def reduce_lowercase_from_to(aProduction, aRange, theTokens, theChildren)
|
212
|
-
lower = theChildren[2].token.lexeme
|
213
|
-
upper = theChildren[4].token.lexeme
|
214
|
-
ch_range = char_range(lower, upper)
|
215
|
-
char_class(false, ch_range)
|
216
|
-
end
|
217
|
-
|
218
|
-
# rule('letter_range' => %w[UPPERCASE LETTER FROM LETTER_LIT TO LETTER_LIT]).as 'uppercase_from_to'
|
219
|
-
def reduce_uppercase_from_to(aProduction, aRange, theTokens, theChildren)
|
220
|
-
lower = theChildren[3].token.lexeme
|
221
|
-
upper = theChildren[5].token.lexeme
|
222
|
-
ch_range = char_range(lower.upcase, upper.upcase)
|
223
|
-
char_class(false, ch_range)
|
224
|
-
end
|
225
|
-
|
226
|
-
# rule('letter_range' => 'LETTER').as 'any_lowercase'
|
227
|
-
def reduce_any_lowercase(aProduction, aRange, theTokens, theChildren)
|
228
|
-
ch_range = char_range('a', 'z')
|
229
|
-
char_class(false, ch_range)
|
230
|
-
end
|
231
|
-
|
232
|
-
# rule('letter_range' => %w[UPPERCASE LETTER]).as 'any_uppercase'
|
233
|
-
def reduce_any_uppercase(aProduction, aRange, theTokens, theChildren)
|
234
|
-
ch_range = char_range('A', 'Z')
|
235
|
-
char_class(false, ch_range)
|
236
|
-
end
|
237
|
-
|
238
|
-
# rule('digit_range' => %w[digit_or_number FROM DIGIT_LIT TO DIGIT_LIT]).as 'digits_from_to'
|
239
|
-
def reduce_digits_from_to(aProduction, aRange, theTokens, theChildren)
|
240
|
-
reduce_lowercase_from_to(aProduction, aRange, theTokens, theChildren)
|
241
|
-
end
|
242
|
-
|
243
|
-
# rule('digit_range' => 'digit_or_number').as 'simple_digit_range'
|
244
|
-
def reduce_simple_digit_range(aProduction, aRange, theTokens, theChildren)
|
245
|
-
char_shorthand('d')
|
246
|
-
end
|
247
|
-
|
248
|
-
# rule('character_class' => %w[ANY CHARACTER]).as 'any_character'
|
249
|
-
def reduce_any_character(aProduction, aRange, theTokens, theChildren)
|
250
|
-
char_shorthand('w')
|
251
|
-
end
|
252
|
-
|
253
|
-
# rule('character_class' => %w[NO CHARACTER]).as 'no_character'
|
254
|
-
def reduce_no_character(aProduction, aRange, theTokens, theChildren)
|
255
|
-
char_shorthand('W')
|
256
|
-
end
|
257
|
-
|
258
|
-
# rule('character_class' => 'WHITESPACE').as 'whitespace'
|
259
|
-
def reduce_whitespace(aProduction, aRange, theTokens, theChildren)
|
260
|
-
char_shorthand('s')
|
261
|
-
end
|
262
|
-
|
263
|
-
# rule('character_class' => %w[NO WHITESPACE]).as 'no_whitespace'
|
264
|
-
def reduce_no_whitespace(aProduction, aRange, theTokens, theChildren)
|
265
|
-
char_shorthand('S')
|
266
|
-
end
|
267
|
-
|
268
|
-
# rule('character_class' => 'ANYTHING').as 'anything'
|
269
|
-
def reduce_anything(aProduction, aRange, theTokens, theChildren)
|
270
|
-
wildcard
|
271
|
-
end
|
272
|
-
|
273
|
-
# rule('alternation' => %w[ANY OF LPAREN alternatives RPAREN]).as 'any_of'
|
274
|
-
def reduce_one_of(aProduction, aRange, theTokens, theChildren)
|
275
|
-
raw_literal = theChildren[-1].token.lexeme.dup
|
276
|
-
alternatives = raw_literal.chars.map { |ch| Regex::Character.new(ch) }
|
277
|
-
return Regex::CharClass.new(false, *alternatives) # TODO check other implementations
|
278
|
-
end
|
279
|
-
|
280
|
-
# rule('special_char' => 'TAB').as 'tab'
|
281
|
-
def reduce_tab(aProduction, aRange, theTokens, theChildren)
|
282
|
-
Regex::Character.new('\t')
|
283
|
-
end
|
284
|
-
|
285
|
-
# rule('special_char' => 'BACKSLASH').as 'backslash'
|
286
|
-
def reduce_backslash(aProduction, aRange, theTokens, theChildren)
|
287
|
-
Regex::Character.new('\\')
|
288
|
-
end
|
289
|
-
|
290
|
-
# rule('special_char' => %w[NEW LINE]).as 'new_line'
|
291
|
-
def reduce_new_line(aProduction, aRange, theTokens, theChildren)
|
292
|
-
# TODO: control portability
|
293
|
-
Regex::Character.new('\n')
|
294
|
-
end
|
295
|
-
|
296
|
-
# rule('literal' => %w[LITERALLY STRING_LIT]).as 'literally'
|
297
|
-
def reduce_literally(aProduction, aRange, theTokens, theChildren)
|
298
|
-
# What if literal is empty?...
|
299
|
-
|
300
|
-
raw_literal = theChildren[-1].token.lexeme.dup
|
301
|
-
return string_literal(raw_literal)
|
302
|
-
end
|
303
|
-
|
304
|
-
#rule('alternation' => %w[ANY OF LPAREN alternatives RPAREN]).as 'any_of'
|
305
|
-
def reduce_any_of(aProduction, aRange, theTokens, theChildren)
|
306
|
-
return Regex::Alternation.new(*theChildren[3])
|
307
|
-
end
|
308
|
-
|
309
|
-
# rule('alternatives' => %w[alternatives separator quantifiable]).as 'alternative_list'
|
310
|
-
def reduce_alternative_list(aProduction, aRange, theTokens, theChildren)
|
311
|
-
return theChildren[0] << theChildren[-1]
|
312
|
-
end
|
313
|
-
|
314
|
-
# rule('alternatives' => 'quantifiable').as 'simple_alternative'
|
315
|
-
def reduce_simple_alternative(aProduction, aRange, theTokens, theChildren)
|
316
|
-
return [theChildren.last]
|
317
|
-
end
|
318
|
-
|
319
|
-
# rule('grouping' => %w[LPAREN pattern RPAREN]).as 'grouping_parenthenses'
|
320
|
-
def reduce_grouping_parenthenses(aProduction, aRange, theTokens, theChildren)
|
321
|
-
return Regex::NonCapturingGroup.new(theChildren[1])
|
322
|
-
end
|
323
|
-
|
324
|
-
# rule('capturing_group' => %w[CAPTURE assertable]).as 'capture'
|
325
|
-
def reduce_capture(aProduction, aRange, theTokens, theChildren)
|
326
|
-
return Regex::CapturingGroup.new(theChildren[1])
|
327
|
-
end
|
328
|
-
|
329
|
-
# rule('capturing_group' => %w[CAPTURE assertable UNTIL assertable]).as 'capture_until'
|
330
|
-
def reduce_capture_until(aProduction, aRange, theTokens, theChildren)
|
331
|
-
group = Regex::CapturingGroup.new(theChildren[1])
|
332
|
-
return Regex::Concatenation.new(group, theChildren[3])
|
333
|
-
end
|
334
|
-
|
335
|
-
# rule('capturing_group' => %w[CAPTURE assertable AS var_name]).as 'named_capture'
|
336
|
-
def reduce_named_capture(aProduction, aRange, theTokens, theChildren)
|
337
|
-
name = theChildren[3].token.lexeme.dup
|
338
|
-
return Regex::CapturingGroup.new(theChildren[1], name)
|
339
|
-
end
|
340
|
-
|
341
|
-
# rule('capturing_group' => %w[CAPTURE assertable AS var_name UNTIL assertable]).as 'named_capture_until'
|
342
|
-
def reduce_named_capture_until(aProduction, aRange, theTokens, theChildren)
|
343
|
-
name = theChildren[3].token.lexeme.dup
|
344
|
-
group = Regex::CapturingGroup.new(theChildren[1], name)
|
345
|
-
return Regex::Concatenation.new(group, theChildren[5])
|
346
|
-
end
|
347
|
-
|
348
|
-
# rule('quantifier' => 'ONCE').as 'once'
|
349
|
-
def reduce_once(aProduction, aRange, theTokens, theChildren)
|
350
|
-
multiplicity(1, 1)
|
351
|
-
end
|
352
|
-
|
353
|
-
# rule('quantifier' => 'TWICE').as 'twice'
|
354
|
-
def reduce_twice(aProduction, aRange, theTokens, theChildren)
|
355
|
-
multiplicity(2, 2)
|
356
|
-
end
|
357
|
-
|
358
|
-
# rule('quantifier' => %w[EXACTLY count TIMES]).as 'exactly'
|
359
|
-
def reduce_exactly(aProduction, aRange, theTokens, theChildren)
|
360
|
-
count = theChildren[1].token.lexeme.to_i
|
361
|
-
multiplicity(count, count)
|
362
|
-
end
|
363
|
-
|
364
|
-
# rule('quantifier' => %w[BETWEEN count AND count times_suffix]).as 'between_and'
|
365
|
-
def reduce_between_and(aProduction, aRange, theTokens, theChildren)
|
366
|
-
lower = theChildren[1].token.lexeme.to_i
|
367
|
-
upper = theChildren[3].token.lexeme.to_i
|
368
|
-
multiplicity(lower, upper)
|
369
|
-
end
|
370
|
-
|
371
|
-
# rule('quantifier' => 'OPTIONAL').as 'optional'
|
372
|
-
def reduce_optional(aProduction, aRange, theTokens, theChildren)
|
373
|
-
multiplicity(0, 1)
|
374
|
-
end
|
375
|
-
|
376
|
-
# rule('quantifier' => %w[ONCE OR MORE]).as 'once_or_more'
|
377
|
-
def reduce_once_or_more(aProduction, aRange, theTokens, theChildren)
|
378
|
-
multiplicity(1, :more)
|
379
|
-
end
|
380
|
-
|
381
|
-
# rule('quantifier' => %w[NEVER OR MORE]).as 'never_or_more'
|
382
|
-
def reduce_never_or_more(aProduction, aRange, theTokens, theChildren)
|
383
|
-
multiplicity(0, :more)
|
384
|
-
end
|
385
|
-
|
386
|
-
# rule('quantifier' => %w[AT LEAST count TIMES]).as 'at_least'
|
387
|
-
def reduce_at_least(aProduction, aRange, theTokens, theChildren)
|
388
|
-
count = theChildren[2].token.lexeme.to_i
|
389
|
-
multiplicity(count, :more)
|
390
|
-
end
|
391
|
-
|
392
|
-
# rule('times_suffix' => 'TIMES').as 'times_keyword'
|
393
|
-
def reduce_times_keyword(aProduction, aRange, theTokens, theChildren)
|
394
|
-
return nil
|
395
|
-
end
|
396
|
-
|
397
|
-
# rule('times_suffix' => []).as 'times_dropped'
|
398
|
-
def reduce_times_dropped(aProduction, aRange, theTokens, theChildren)
|
399
|
-
return nil
|
400
|
-
end
|
401
|
-
|
402
|
-
end # class
|
403
|
-
# End of file
|