regexp_parser 1.7.0 → 1.7.1
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/README.md +2 -5
- data/lib/regexp_parser/scanner.rb +754 -723
- data/lib/regexp_parser/scanner/scanner.rl +19 -4
- data/lib/regexp_parser/version.rb +1 -1
- data/spec/lexer/delimiters_spec.rb +68 -0
- data/spec/parser/quantifiers_spec.rb +1 -0
- data/spec/scanner/delimiters_spec.rb +52 -0
- data/spec/scanner/errors_spec.rb +0 -1
- metadata +9 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dd872b22bf04a288790ef0f73df9041f14fb88a08c2a03852d9dbbc238b452d6
|
4
|
+
data.tar.gz: 4641097a24b5fa0f7b0c8e5aacc152587fe8b15d30f3f78bbec8157887b8b897
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 858570df4a7047a2d8b09555b56de28a66ca4f8022e596c249900f5312f8e7fb9376384ca816bc3c08f3e324930702ad410a28b5be680adea6867e1f8075441e
|
7
|
+
data.tar.gz: 0d70e7b4f18739826bb334fb305e335e44a354ae302214ca3c1884f66ace8680e48a9e4c64b890b220b82056da761084413c8b9b8c5e363382f5cf165b3d3448
|
data/CHANGELOG.md
CHANGED
@@ -1,10 +1,17 @@
|
|
1
1
|
## [Unreleased]
|
2
2
|
|
3
|
+
### [1.7.1] - 2020-06-07 - [Ammar Ali](mailto:ammarabuali@gmail.com)
|
4
|
+
|
5
|
+
### Fixed
|
6
|
+
|
7
|
+
- Support for literals that include the unescaped delimiters `{`, `}`, and `]`. These
|
8
|
+
delimiters are informally supported by various regexp engines.
|
9
|
+
|
3
10
|
### [1.7.0] - 2020-02-23 - [Janosch Müller](mailto:janosch84@gmail.com)
|
4
11
|
|
5
12
|
### Added
|
6
13
|
|
7
|
-
- `Expression#each_expression` and
|
14
|
+
- `Expression#each_expression` and `#traverse` can now be called without a block
|
8
15
|
* this returns an `Enumerator` and allows chaining, e.g. `each_expression.select`
|
9
16
|
* thanks to [Masataka Kuwabara](https://github.com/pocke)
|
10
17
|
|
data/README.md
CHANGED
@@ -136,11 +136,8 @@ Regexp::Scanner.scan( /(cat?([bhm]at)){3,5}/ ).map {|token| token[2]}
|
|
136
136
|
to the lexer.
|
137
137
|
|
138
138
|
* The MRI implementation may accept expressions that either conflict with
|
139
|
-
the documentation or are undocumented
|
140
|
-
|
141
|
-
_(See issues [#3](https://github.com/ammar/regexp_parser/issues/3) and
|
142
|
-
[#15](https://github.com/ammar/regexp_parser/issues/15) for examples)_
|
143
|
-
|
139
|
+
the documentation or are undocumented, like `{}` and `]` _(unescaped)_.
|
140
|
+
The scanner will try to support as many of these cases as possible.
|
144
141
|
|
145
142
|
---
|
146
143
|
### Syntax
|
@@ -1,8 +1,8 @@
|
|
1
1
|
# -*- warn-indent:false; -*-
|
2
2
|
|
3
|
-
# line 1 "/Users/
|
3
|
+
# line 1 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
4
4
|
|
5
|
-
# line
|
5
|
+
# line 676 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
6
6
|
|
7
7
|
|
8
8
|
# THIS IS A GENERATED FILE, DO NOT EDIT DIRECTLY
|
@@ -95,7 +95,7 @@ class Regexp::Scanner
|
|
95
95
|
self.conditional_stack = []
|
96
96
|
|
97
97
|
|
98
|
-
# line 98 "/Users/
|
98
|
+
# line 98 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner.rb"
|
99
99
|
class << self
|
100
100
|
attr_accessor :_re_scanner_trans_keys
|
101
101
|
private :_re_scanner_trans_keys, :_re_scanner_trans_keys=
|
@@ -110,55 +110,56 @@ self._re_scanner_trans_keys = [
|
|
110
110
|
48, 57, 39, 57, 39, 122,
|
111
111
|
43, 122, 48, 57, 48,
|
112
112
|
62, 48, 57, 43, 62,
|
113
|
-
43, 122,
|
114
|
-
|
115
|
-
|
116
|
-
-128, -65,
|
117
|
-
45, 122,
|
118
|
-
|
119
|
-
110, 112, 117, 117,
|
120
|
-
|
121
|
-
104,
|
122
|
-
|
123
|
-
|
124
|
-
107,
|
125
|
-
114, 114, 108, 108,
|
126
|
-
|
127
|
-
116,
|
128
|
-
112, 112, 104, 104,
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
133
|
-
99,
|
134
|
-
112, 112,
|
135
|
-
|
136
|
-
|
137
|
-
|
138
|
-
|
139
|
-
92,
|
113
|
+
43, 122, 48, 57, 48, 125,
|
114
|
+
44, 125, 123, 123, 9,
|
115
|
+
122, 9, 125, 9, 122,
|
116
|
+
-128, -65, -128, -65, 38, 38,
|
117
|
+
45, 122, 45, 122, 93,
|
118
|
+
93, 94, 120, 97, 120,
|
119
|
+
108, 115, 110, 112, 117, 117,
|
120
|
+
109, 109, 58, 58, 93,
|
121
|
+
93, 104, 104, 97, 97,
|
122
|
+
99, 99, 105, 105, 105, 105,
|
123
|
+
108, 108, 97, 97, 110,
|
124
|
+
110, 107, 107, 110, 110,
|
125
|
+
116, 116, 114, 114, 108, 108,
|
126
|
+
105, 105, 103, 103, 105,
|
127
|
+
105, 116, 116, 114, 114,
|
128
|
+
97, 97, 112, 112, 104, 104,
|
129
|
+
111, 111, 119, 119, 101,
|
130
|
+
101, 114, 114, 114, 117,
|
131
|
+
105, 105, 110, 110, 110, 110,
|
132
|
+
99, 99, 112, 112, 97,
|
133
|
+
97, 99, 99, 101, 101,
|
134
|
+
112, 112, 112, 112, 111, 111,
|
135
|
+
114, 114, 100, 100, 100,
|
136
|
+
100, 65, 122, 61, 61,
|
137
|
+
93, 93, 45, 45, 92, 92,
|
138
|
+
92, 92, 45, 45, 92,
|
139
|
+
92, 92, 92, 48, 123,
|
140
140
|
48, 102, 48, 102, 48, 102,
|
141
|
-
|
141
|
+
48, 102, 9, 125, 9,
|
142
142
|
125, 9, 125, 9, 125,
|
143
|
-
9, 125,
|
144
|
-
|
145
|
-
|
146
|
-
-32, -17, -16, -12,
|
147
|
-
1, 127,
|
148
|
-
|
149
|
-
|
150
|
-
43, 63, 43, 63,
|
151
|
-
|
152
|
-
|
153
|
-
-
|
154
|
-
|
155
|
-
|
156
|
-
|
157
|
-
|
158
|
-
|
159
|
-
|
160
|
-
|
161
|
-
48, 122,
|
143
|
+
9, 125, 9, 125, 48, 123,
|
144
|
+
41, 41, 39, 122, 41,
|
145
|
+
57, 48, 122, -128, 127,
|
146
|
+
-62, -33, -32, -17, -16, -12,
|
147
|
+
1, 127, 1, 127, 9,
|
148
|
+
32, 33, 126, 10, 126,
|
149
|
+
63, 63, 33, 126, 33, 126,
|
150
|
+
43, 63, 43, 63, 43,
|
151
|
+
63, 65, 122, 44, 57,
|
152
|
+
43, 63, 68, 119, 80, 112,
|
153
|
+
-62, 125, -128, -65, -128,
|
154
|
+
-65, -128, -65, 38, 38,
|
155
|
+
38, 93, 46, 61, 48, 122,
|
156
|
+
36, 125, 48, 55, 48,
|
157
|
+
55, 77, 77, 45, 45,
|
158
|
+
0, 0, 67, 99, 45, 45,
|
159
|
+
0, 0, 92, 92, 48,
|
160
|
+
102, 39, 60, 39, 122,
|
161
|
+
49, 57, 41, 57, 48, 122,
|
162
|
+
0
|
162
163
|
]
|
163
164
|
|
164
165
|
class << self
|
@@ -169,23 +170,23 @@ self._re_scanner_key_spans = [
|
|
169
170
|
0, 64, 64, 64, 64, 64, 64, 1,
|
170
171
|
1, 84, 90, 75, 22, 84, 10, 19,
|
171
172
|
10, 19, 84, 80, 10, 15, 10, 20,
|
172
|
-
80,
|
173
|
-
64, 1, 78, 78, 1, 27, 24,
|
174
|
-
|
173
|
+
80, 10, 78, 82, 1, 114, 117, 114,
|
174
|
+
64, 64, 1, 78, 78, 1, 27, 24,
|
175
|
+
8, 3, 1, 1, 1, 1, 1, 1,
|
175
176
|
1, 1, 1, 1, 1, 1, 1, 1,
|
176
177
|
1, 1, 1, 1, 1, 1, 1, 1,
|
177
|
-
1, 1, 1, 1, 1, 1,
|
178
|
+
1, 1, 1, 1, 1, 1, 1, 4,
|
178
179
|
1, 1, 1, 1, 1, 1, 1, 1,
|
179
|
-
1, 1, 1, 1, 1,
|
180
|
-
1, 1, 1, 1, 1, 1,
|
181
|
-
55, 55, 55,
|
182
|
-
117, 76, 1, 84, 17, 75,
|
183
|
-
16, 5, 127, 127, 24, 94, 117,
|
184
|
-
94, 94, 21, 21, 21, 58,
|
185
|
-
33, 188, 64, 64, 64, 1,
|
186
|
-
75, 90, 8, 8, 1, 1,
|
187
|
-
1, 0, 1, 55, 22, 84,
|
188
|
-
75
|
180
|
+
1, 1, 1, 1, 1, 1, 58, 1,
|
181
|
+
1, 1, 1, 1, 1, 1, 1, 76,
|
182
|
+
55, 55, 55, 55, 117, 117, 117, 117,
|
183
|
+
117, 117, 76, 1, 84, 17, 75, 256,
|
184
|
+
30, 16, 5, 127, 127, 24, 94, 117,
|
185
|
+
1, 94, 94, 21, 21, 21, 58, 14,
|
186
|
+
21, 52, 33, 188, 64, 64, 64, 1,
|
187
|
+
56, 16, 75, 90, 8, 8, 1, 1,
|
188
|
+
0, 33, 1, 0, 1, 55, 22, 84,
|
189
|
+
9, 17, 75
|
189
190
|
]
|
190
191
|
|
191
192
|
class << self
|
@@ -196,23 +197,23 @@ self._re_scanner_index_offsets = [
|
|
196
197
|
0, 0, 65, 130, 195, 260, 325, 390,
|
197
198
|
392, 394, 479, 570, 646, 669, 754, 765,
|
198
199
|
785, 796, 816, 901, 982, 993, 1009, 1020,
|
199
|
-
1041, 1122,
|
200
|
-
|
201
|
-
|
202
|
-
|
203
|
-
|
204
|
-
|
205
|
-
|
206
|
-
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
|
211
|
-
|
212
|
-
|
213
|
-
|
214
|
-
|
215
|
-
|
200
|
+
1041, 1122, 1133, 1212, 1295, 1297, 1412, 1530,
|
201
|
+
1645, 1710, 1775, 1777, 1856, 1935, 1937, 1965,
|
202
|
+
1990, 1999, 2003, 2005, 2007, 2009, 2011, 2013,
|
203
|
+
2015, 2017, 2019, 2021, 2023, 2025, 2027, 2029,
|
204
|
+
2031, 2033, 2035, 2037, 2039, 2041, 2043, 2045,
|
205
|
+
2047, 2049, 2051, 2053, 2055, 2057, 2059, 2061,
|
206
|
+
2066, 2068, 2070, 2072, 2074, 2076, 2078, 2080,
|
207
|
+
2082, 2084, 2086, 2088, 2090, 2092, 2094, 2153,
|
208
|
+
2155, 2157, 2159, 2161, 2163, 2165, 2167, 2169,
|
209
|
+
2246, 2302, 2358, 2414, 2470, 2588, 2706, 2824,
|
210
|
+
2942, 3060, 3178, 3255, 3257, 3342, 3360, 3436,
|
211
|
+
3693, 3724, 3741, 3747, 3875, 4003, 4028, 4123,
|
212
|
+
4241, 4243, 4338, 4433, 4455, 4477, 4499, 4558,
|
213
|
+
4573, 4595, 4648, 4682, 4871, 4936, 5001, 5066,
|
214
|
+
5068, 5125, 5142, 5218, 5309, 5318, 5327, 5329,
|
215
|
+
5331, 5332, 5366, 5368, 5369, 5371, 5427, 5450,
|
216
|
+
5535, 5545, 5563
|
216
217
|
]
|
217
218
|
|
218
219
|
class << self
|
@@ -360,8 +361,9 @@ self._re_scanner_indicies = [
|
|
360
361
|
28, 28, 28, 28, 28, 28, 28, 28,
|
361
362
|
28, 28, 28, 28, 28, 28, 28, 28,
|
362
363
|
28, 28, 28, 28, 28, 28, 28, 28,
|
363
|
-
28, 17, 32,
|
364
|
-
|
364
|
+
28, 17, 32, 32, 32, 32, 32, 32,
|
365
|
+
32, 32, 32, 32, 31, 32, 32, 32,
|
366
|
+
32, 32, 32, 32, 32, 32, 32, 31,
|
365
367
|
31, 31, 31, 31, 31, 31, 31, 31,
|
366
368
|
31, 31, 31, 31, 31, 31, 31, 31,
|
367
369
|
31, 31, 31, 31, 31, 31, 31, 31,
|
@@ -370,8 +372,9 @@ self._re_scanner_indicies = [
|
|
370
372
|
31, 31, 31, 31, 31, 31, 31, 31,
|
371
373
|
31, 31, 31, 31, 31, 31, 31, 31,
|
372
374
|
31, 31, 31, 31, 31, 31, 31, 31,
|
373
|
-
31, 31, 31,
|
374
|
-
|
375
|
+
31, 31, 33, 31, 32, 31, 31, 31,
|
376
|
+
34, 34, 34, 34, 34, 34, 34, 34,
|
377
|
+
34, 34, 31, 31, 31, 31, 31, 31,
|
375
378
|
31, 31, 31, 31, 31, 31, 31, 31,
|
376
379
|
31, 31, 31, 31, 31, 31, 31, 31,
|
377
380
|
31, 31, 31, 31, 31, 31, 31, 31,
|
@@ -379,22 +382,7 @@ self._re_scanner_indicies = [
|
|
379
382
|
31, 31, 31, 31, 31, 31, 31, 31,
|
380
383
|
31, 31, 31, 31, 31, 31, 31, 31,
|
381
384
|
31, 31, 31, 31, 31, 31, 31, 31,
|
382
|
-
31, 31, 31, 31, 31,
|
383
|
-
31, 31, 34, 31, 35, 36, 37, 37,
|
384
|
-
37, 37, 37, 36, 36, 36, 36, 36,
|
385
|
-
36, 36, 36, 36, 36, 36, 36, 36,
|
386
|
-
36, 36, 36, 36, 36, 37, 36, 36,
|
387
|
-
36, 36, 36, 36, 36, 36, 36, 36,
|
388
|
-
36, 36, 37, 37, 36, 37, 37, 37,
|
389
|
-
37, 37, 37, 37, 37, 37, 37, 36,
|
390
|
-
36, 36, 37, 36, 36, 36, 37, 37,
|
391
|
-
37, 37, 37, 37, 37, 37, 37, 37,
|
392
|
-
37, 37, 37, 37, 37, 37, 37, 37,
|
393
|
-
37, 37, 37, 37, 37, 37, 37, 37,
|
394
|
-
36, 36, 36, 38, 37, 36, 37, 37,
|
395
|
-
37, 37, 37, 37, 37, 37, 37, 37,
|
396
|
-
37, 37, 37, 37, 37, 37, 37, 37,
|
397
|
-
37, 37, 37, 37, 37, 37, 37, 37,
|
385
|
+
31, 31, 31, 31, 31, 33, 31, 35,
|
398
386
|
36, 37, 37, 37, 37, 37, 36, 36,
|
399
387
|
36, 36, 36, 36, 36, 36, 36, 36,
|
400
388
|
36, 36, 36, 36, 36, 36, 36, 36,
|
@@ -405,26 +393,40 @@ self._re_scanner_indicies = [
|
|
405
393
|
36, 37, 37, 37, 37, 37, 37, 37,
|
406
394
|
37, 37, 37, 37, 37, 37, 37, 37,
|
407
395
|
37, 37, 37, 37, 37, 37, 37, 37,
|
408
|
-
37, 37, 37, 36, 36, 36,
|
396
|
+
37, 37, 37, 36, 36, 36, 38, 37,
|
409
397
|
36, 37, 37, 37, 37, 37, 37, 37,
|
410
398
|
37, 37, 37, 37, 37, 37, 37, 37,
|
411
399
|
37, 37, 37, 37, 37, 37, 37, 37,
|
412
|
-
37, 37, 37, 36,
|
413
|
-
37,
|
400
|
+
37, 37, 37, 36, 37, 37, 37, 37,
|
401
|
+
37, 36, 36, 36, 36, 36, 36, 36,
|
414
402
|
36, 36, 36, 36, 36, 36, 36, 36,
|
415
|
-
36, 36, 36,
|
403
|
+
36, 36, 36, 37, 36, 36, 36, 36,
|
416
404
|
36, 36, 36, 36, 36, 36, 36, 36,
|
417
|
-
|
405
|
+
37, 37, 36, 37, 37, 37, 37, 37,
|
406
|
+
37, 37, 37, 37, 37, 36, 36, 36,
|
407
|
+
37, 36, 36, 36, 37, 37, 37, 37,
|
408
|
+
37, 37, 37, 37, 37, 37, 37, 37,
|
418
409
|
37, 37, 37, 37, 37, 37, 37, 37,
|
419
|
-
|
410
|
+
37, 37, 37, 37, 37, 37, 36, 36,
|
411
|
+
36, 36, 37, 36, 37, 37, 37, 37,
|
420
412
|
37, 37, 37, 37, 37, 37, 37, 37,
|
421
413
|
37, 37, 37, 37, 37, 37, 37, 37,
|
414
|
+
37, 37, 37, 37, 37, 37, 36, 36,
|
415
|
+
39, 36, 37, 37, 37, 37, 37, 36,
|
416
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
417
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
418
|
+
36, 37, 36, 36, 36, 36, 36, 36,
|
419
|
+
36, 36, 36, 36, 36, 36, 37, 37,
|
420
|
+
36, 37, 37, 37, 37, 37, 37, 37,
|
421
|
+
37, 37, 37, 36, 36, 36, 37, 36,
|
422
|
+
36, 36, 37, 37, 37, 37, 37, 37,
|
422
423
|
37, 37, 37, 37, 37, 37, 37, 37,
|
423
|
-
37, 36, 36, 36, 36, 37, 36, 37,
|
424
424
|
37, 37, 37, 37, 37, 37, 37, 37,
|
425
|
+
37, 37, 37, 37, 36, 36, 36, 36,
|
426
|
+
37, 36, 37, 37, 37, 37, 37, 37,
|
425
427
|
37, 37, 37, 37, 37, 37, 37, 37,
|
426
428
|
37, 37, 37, 37, 37, 37, 37, 37,
|
427
|
-
37,
|
429
|
+
37, 37, 37, 37, 36, 41, 41, 41,
|
428
430
|
41, 41, 41, 41, 41, 41, 41, 41,
|
429
431
|
41, 41, 41, 41, 41, 41, 41, 41,
|
430
432
|
41, 41, 41, 41, 41, 41, 41, 41,
|
@@ -432,7 +434,7 @@ self._re_scanner_indicies = [
|
|
432
434
|
41, 41, 41, 41, 41, 41, 41, 41,
|
433
435
|
41, 41, 41, 41, 41, 41, 41, 41,
|
434
436
|
41, 41, 41, 41, 41, 41, 41, 41,
|
435
|
-
41, 41,
|
437
|
+
41, 41, 41, 41, 41, 40, 42, 42,
|
436
438
|
42, 42, 42, 42, 42, 42, 42, 42,
|
437
439
|
42, 42, 42, 42, 42, 42, 42, 42,
|
438
440
|
42, 42, 42, 42, 42, 42, 42, 42,
|
@@ -440,172 +442,172 @@ self._re_scanner_indicies = [
|
|
440
442
|
42, 42, 42, 42, 42, 42, 42, 42,
|
441
443
|
42, 42, 42, 42, 42, 42, 42, 42,
|
442
444
|
42, 42, 42, 42, 42, 42, 42, 42,
|
443
|
-
42, 42, 42,
|
444
|
-
|
445
|
+
42, 42, 42, 42, 42, 42, 40, 44,
|
446
|
+
43, 47, 46, 46, 46, 46, 46, 46,
|
445
447
|
46, 46, 46, 46, 46, 46, 46, 46,
|
446
|
-
46, 46,
|
448
|
+
46, 46, 46, 46, 46, 47, 47, 47,
|
447
449
|
47, 47, 47, 47, 47, 47, 47, 47,
|
448
450
|
47, 47, 47, 47, 47, 47, 47, 47,
|
449
|
-
47, 47, 47, 47,
|
450
|
-
46, 46,
|
451
|
+
47, 47, 47, 47, 47, 47, 47, 46,
|
452
|
+
46, 46, 46, 46, 46, 47, 47, 47,
|
451
453
|
47, 47, 47, 47, 47, 47, 47, 47,
|
452
454
|
47, 47, 47, 47, 47, 47, 47, 47,
|
453
|
-
47, 47, 47, 47,
|
455
|
+
47, 47, 47, 47, 47, 47, 47, 46,
|
456
|
+
47, 48, 46, 46, 46, 46, 46, 46,
|
454
457
|
46, 46, 46, 46, 46, 46, 46, 46,
|
455
|
-
46, 46, 46, 46,
|
456
|
-
46, 47, 47, 47, 47, 47, 47, 47,
|
458
|
+
46, 46, 46, 46, 47, 47, 47, 47,
|
457
459
|
47, 47, 47, 47, 47, 47, 47, 47,
|
458
460
|
47, 47, 47, 47, 47, 47, 47, 47,
|
459
|
-
47, 47, 47,
|
460
|
-
46,
|
461
|
+
47, 47, 47, 47, 47, 47, 46, 46,
|
462
|
+
46, 46, 46, 46, 47, 47, 47, 47,
|
461
463
|
47, 47, 47, 47, 47, 47, 47, 47,
|
462
464
|
47, 47, 47, 47, 47, 47, 47, 47,
|
463
|
-
47, 47, 47,
|
464
|
-
46,
|
465
|
-
46, 46,
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
470
|
-
|
471
|
-
46, 46,
|
472
|
-
|
473
|
-
|
474
|
-
|
475
|
-
|
476
|
-
|
477
|
-
|
478
|
-
|
479
|
-
|
480
|
-
46,
|
481
|
-
46,
|
482
|
-
46,
|
483
|
-
46,
|
465
|
+
47, 47, 47, 47, 47, 47, 46, 49,
|
466
|
+
46, 50, 46, 46, 51, 52, 53, 54,
|
467
|
+
46, 46, 55, 46, 46, 46, 46, 56,
|
468
|
+
46, 46, 46, 57, 46, 46, 58, 46,
|
469
|
+
59, 46, 60, 61, 46, 51, 52, 53,
|
470
|
+
54, 46, 46, 55, 46, 46, 46, 46,
|
471
|
+
56, 46, 46, 46, 57, 46, 46, 58,
|
472
|
+
46, 59, 46, 60, 61, 46, 62, 46,
|
473
|
+
46, 46, 46, 46, 46, 63, 46, 64,
|
474
|
+
46, 65, 46, 66, 46, 67, 46, 68,
|
475
|
+
46, 69, 46, 70, 46, 67, 46, 71,
|
476
|
+
46, 72, 46, 67, 46, 73, 46, 74,
|
477
|
+
46, 75, 46, 67, 46, 76, 46, 77,
|
478
|
+
46, 78, 46, 67, 46, 79, 46, 80,
|
479
|
+
46, 81, 46, 67, 46, 82, 46, 83,
|
480
|
+
46, 84, 46, 67, 46, 85, 46, 86,
|
481
|
+
46, 87, 46, 67, 46, 88, 46, 46,
|
482
|
+
89, 46, 90, 46, 81, 46, 91, 46,
|
483
|
+
81, 46, 92, 46, 93, 46, 94, 46,
|
484
|
+
67, 46, 95, 46, 86, 46, 96, 46,
|
485
|
+
97, 46, 67, 46, 54, 46, 98, 98,
|
484
486
|
98, 98, 98, 98, 98, 98, 98, 98,
|
485
487
|
98, 98, 98, 98, 98, 98, 98, 98,
|
486
|
-
98, 98, 98, 98, 98, 46, 46, 46,
|
487
|
-
46, 46, 46, 98, 98, 98, 98, 98,
|
488
488
|
98, 98, 98, 98, 98, 98, 98, 98,
|
489
|
+
46, 46, 46, 46, 46, 46, 98, 98,
|
489
490
|
98, 98, 98, 98, 98, 98, 98, 98,
|
490
|
-
98, 98, 98, 98, 98,
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
|
495
|
-
111, 111, 111,
|
491
|
+
98, 98, 98, 98, 98, 98, 98, 98,
|
492
|
+
98, 98, 98, 98, 98, 98, 98, 98,
|
493
|
+
46, 99, 46, 100, 46, 101, 36, 103,
|
494
|
+
102, 105, 102, 106, 36, 108, 107, 110,
|
495
|
+
107, 111, 111, 111, 111, 111, 111, 111,
|
496
|
+
111, 111, 111, 36, 36, 36, 36, 36,
|
497
|
+
36, 36, 111, 111, 111, 111, 111, 111,
|
496
498
|
36, 36, 36, 36, 36, 36, 36, 36,
|
497
499
|
36, 36, 36, 36, 36, 36, 36, 36,
|
498
|
-
36, 36, 36, 36, 36, 36, 36, 111,
|
499
|
-
111, 111, 111, 111, 111, 36, 36, 36,
|
500
500
|
36, 36, 36, 36, 36, 36, 36, 36,
|
501
|
+
36, 36, 111, 111, 111, 111, 111, 111,
|
501
502
|
36, 36, 36, 36, 36, 36, 36, 36,
|
502
|
-
36,
|
503
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
504
|
+
36, 36, 36, 36, 112, 36, 113, 113,
|
505
|
+
113, 113, 113, 113, 113, 113, 113, 113,
|
506
|
+
36, 36, 36, 36, 36, 36, 36, 113,
|
503
507
|
113, 113, 113, 113, 113, 36, 36, 36,
|
504
|
-
36, 36, 36, 36, 113, 113, 113, 113,
|
505
|
-
113, 113, 36, 36, 36, 36, 36, 36,
|
506
508
|
36, 36, 36, 36, 36, 36, 36, 36,
|
507
509
|
36, 36, 36, 36, 36, 36, 36, 36,
|
508
|
-
36, 36, 36, 36,
|
509
|
-
113, 113,
|
510
|
+
36, 36, 36, 36, 36, 36, 36, 113,
|
511
|
+
113, 113, 113, 113, 113, 36, 114, 114,
|
512
|
+
114, 114, 114, 114, 114, 114, 114, 114,
|
513
|
+
36, 36, 36, 36, 36, 36, 36, 114,
|
510
514
|
114, 114, 114, 114, 114, 36, 36, 36,
|
511
|
-
36, 36, 36, 36, 114, 114, 114, 114,
|
512
|
-
114, 114, 36, 36, 36, 36, 36, 36,
|
513
515
|
36, 36, 36, 36, 36, 36, 36, 36,
|
514
516
|
36, 36, 36, 36, 36, 36, 36, 36,
|
515
|
-
36, 36, 36, 36,
|
516
|
-
114, 114,
|
517
|
+
36, 36, 36, 36, 36, 36, 36, 114,
|
518
|
+
114, 114, 114, 114, 114, 36, 115, 115,
|
519
|
+
115, 115, 115, 115, 115, 115, 115, 115,
|
520
|
+
36, 36, 36, 36, 36, 36, 36, 115,
|
517
521
|
115, 115, 115, 115, 115, 36, 36, 36,
|
518
|
-
36, 36, 36, 36, 115, 115, 115, 115,
|
519
|
-
115, 115, 36, 36, 36, 36, 36, 36,
|
520
522
|
36, 36, 36, 36, 36, 36, 36, 36,
|
521
523
|
36, 36, 36, 36, 36, 36, 36, 36,
|
522
|
-
36, 36, 36, 36,
|
523
|
-
115, 115,
|
524
|
+
36, 36, 36, 36, 36, 36, 36, 115,
|
525
|
+
115, 115, 115, 115, 115, 36, 116, 116,
|
526
|
+
116, 116, 116, 116, 116, 116, 116, 116,
|
527
|
+
36, 36, 36, 36, 36, 36, 36, 116,
|
524
528
|
116, 116, 116, 116, 116, 36, 36, 36,
|
525
|
-
36, 36, 36, 36, 116, 116, 116, 116,
|
526
|
-
116, 116, 36, 36, 36, 36, 36, 36,
|
527
|
-
36, 36, 36, 36, 36, 36, 36, 36,
|
528
529
|
36, 36, 36, 36, 36, 36, 36, 36,
|
529
|
-
36, 36, 36, 36, 116, 116, 116, 116,
|
530
|
-
116, 116, 36, 112, 112, 112, 112, 112,
|
531
530
|
36, 36, 36, 36, 36, 36, 36, 36,
|
531
|
+
36, 36, 36, 36, 36, 36, 36, 116,
|
532
|
+
116, 116, 116, 116, 116, 36, 112, 112,
|
533
|
+
112, 112, 112, 36, 36, 36, 36, 36,
|
532
534
|
36, 36, 36, 36, 36, 36, 36, 36,
|
533
|
-
36, 36,
|
535
|
+
36, 36, 36, 36, 36, 112, 36, 36,
|
534
536
|
36, 36, 36, 36, 36, 36, 36, 36,
|
535
|
-
36, 36,
|
537
|
+
36, 36, 36, 36, 36, 117, 117, 117,
|
538
|
+
117, 117, 117, 117, 117, 117, 117, 36,
|
539
|
+
36, 36, 36, 36, 36, 36, 117, 117,
|
536
540
|
117, 117, 117, 117, 36, 36, 36, 36,
|
537
|
-
36, 36, 36, 117, 117, 117, 117, 117,
|
538
|
-
117, 36, 36, 36, 36, 36, 36, 36,
|
539
541
|
36, 36, 36, 36, 36, 36, 36, 36,
|
540
542
|
36, 36, 36, 36, 36, 36, 36, 36,
|
541
|
-
36, 36, 36,
|
542
|
-
117,
|
543
|
-
36, 36, 36, 36, 36, 36, 36, 36,
|
544
|
-
36, 36, 36, 36, 36, 36, 36, 115,
|
545
|
-
36, 112, 112, 112, 112, 112, 36, 36,
|
543
|
+
36, 36, 36, 36, 36, 36, 117, 117,
|
544
|
+
117, 117, 117, 117, 36, 36, 36, 36,
|
546
545
|
36, 36, 36, 36, 36, 36, 36, 36,
|
547
546
|
36, 36, 36, 36, 36, 36, 36, 36,
|
547
|
+
36, 36, 115, 36, 112, 112, 112, 112,
|
548
548
|
112, 36, 36, 36, 36, 36, 36, 36,
|
549
549
|
36, 36, 36, 36, 36, 36, 36, 36,
|
550
|
-
|
550
|
+
36, 36, 36, 112, 36, 36, 36, 36,
|
551
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
552
|
+
36, 36, 36, 118, 118, 118, 118, 118,
|
553
|
+
118, 118, 118, 118, 118, 36, 36, 36,
|
554
|
+
36, 36, 36, 36, 118, 118, 118, 118,
|
551
555
|
118, 118, 36, 36, 36, 36, 36, 36,
|
552
|
-
36, 118, 118, 118, 118, 118, 118, 36,
|
553
556
|
36, 36, 36, 36, 36, 36, 36, 36,
|
554
557
|
36, 36, 36, 36, 36, 36, 36, 36,
|
558
|
+
36, 36, 36, 36, 118, 118, 118, 118,
|
559
|
+
118, 118, 36, 36, 36, 36, 36, 36,
|
560
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
555
561
|
36, 36, 36, 36, 36, 36, 36, 36,
|
556
|
-
|
562
|
+
115, 36, 112, 112, 112, 112, 112, 36,
|
557
563
|
36, 36, 36, 36, 36, 36, 36, 36,
|
558
564
|
36, 36, 36, 36, 36, 36, 36, 36,
|
559
|
-
36,
|
560
|
-
112, 112, 112, 112, 36, 36, 36, 36,
|
565
|
+
36, 112, 36, 36, 36, 36, 36, 36,
|
561
566
|
36, 36, 36, 36, 36, 36, 36, 36,
|
562
|
-
36,
|
567
|
+
36, 119, 119, 119, 119, 119, 119, 119,
|
568
|
+
119, 119, 119, 36, 36, 36, 36, 36,
|
569
|
+
36, 36, 119, 119, 119, 119, 119, 119,
|
563
570
|
36, 36, 36, 36, 36, 36, 36, 36,
|
564
|
-
36, 36, 36, 36, 36, 36, 119, 119,
|
565
|
-
119, 119, 119, 119, 119, 119, 119, 119,
|
566
|
-
36, 36, 36, 36, 36, 36, 36, 119,
|
567
|
-
119, 119, 119, 119, 119, 36, 36, 36,
|
568
571
|
36, 36, 36, 36, 36, 36, 36, 36,
|
569
572
|
36, 36, 36, 36, 36, 36, 36, 36,
|
570
|
-
36, 36,
|
571
|
-
119, 119, 119, 119, 119, 36, 36, 36,
|
573
|
+
36, 36, 119, 119, 119, 119, 119, 119,
|
572
574
|
36, 36, 36, 36, 36, 36, 36, 36,
|
573
575
|
36, 36, 36, 36, 36, 36, 36, 36,
|
574
|
-
36, 36, 36,
|
575
|
-
112, 112,
|
576
|
+
36, 36, 36, 36, 36, 36, 115, 36,
|
577
|
+
112, 112, 112, 112, 112, 36, 36, 36,
|
576
578
|
36, 36, 36, 36, 36, 36, 36, 36,
|
577
|
-
36, 36, 36, 36,
|
579
|
+
36, 36, 36, 36, 36, 36, 36, 112,
|
578
580
|
36, 36, 36, 36, 36, 36, 36, 36,
|
579
|
-
36, 36, 36, 36,
|
581
|
+
36, 36, 36, 36, 36, 36, 36, 120,
|
582
|
+
120, 120, 120, 120, 120, 120, 120, 120,
|
583
|
+
120, 36, 36, 36, 36, 36, 36, 36,
|
580
584
|
120, 120, 120, 120, 120, 120, 36, 36,
|
581
|
-
36, 36, 36, 36, 36, 120, 120, 120,
|
582
|
-
120, 120, 120, 36, 36, 36, 36, 36,
|
583
585
|
36, 36, 36, 36, 36, 36, 36, 36,
|
584
586
|
36, 36, 36, 36, 36, 36, 36, 36,
|
585
|
-
36, 36, 36, 36, 36, 120, 120, 120,
|
586
|
-
120, 120, 120, 36, 36, 36, 36, 36,
|
587
587
|
36, 36, 36, 36, 36, 36, 36, 36,
|
588
|
+
120, 120, 120, 120, 120, 120, 36, 36,
|
588
589
|
36, 36, 36, 36, 36, 36, 36, 36,
|
589
|
-
36, 115, 36, 112, 112, 112, 112, 112,
|
590
590
|
36, 36, 36, 36, 36, 36, 36, 36,
|
591
|
+
36, 36, 36, 36, 115, 36, 112, 112,
|
592
|
+
112, 112, 112, 36, 36, 36, 36, 36,
|
591
593
|
36, 36, 36, 36, 36, 36, 36, 36,
|
592
|
-
36, 36,
|
594
|
+
36, 36, 36, 36, 36, 112, 36, 36,
|
593
595
|
36, 36, 36, 36, 36, 36, 36, 36,
|
594
|
-
36, 36,
|
596
|
+
36, 36, 36, 36, 36, 121, 121, 121,
|
597
|
+
121, 121, 121, 121, 121, 121, 121, 36,
|
598
|
+
36, 36, 36, 36, 36, 36, 121, 121,
|
595
599
|
121, 121, 121, 121, 36, 36, 36, 36,
|
596
|
-
36, 36, 36, 121, 121, 121, 121, 121,
|
597
|
-
121, 36, 36, 36, 36, 36, 36, 36,
|
598
|
-
36, 36, 36, 36, 36, 36, 36, 36,
|
599
600
|
36, 36, 36, 36, 36, 36, 36, 36,
|
600
|
-
36, 36, 36, 121, 121, 121, 121, 121,
|
601
|
-
121, 36, 36, 36, 36, 36, 36, 36,
|
602
601
|
36, 36, 36, 36, 36, 36, 36, 36,
|
603
|
-
36, 36, 36, 36, 36, 36,
|
604
|
-
|
602
|
+
36, 36, 36, 36, 36, 36, 121, 121,
|
603
|
+
121, 121, 121, 121, 36, 36, 36, 36,
|
605
604
|
36, 36, 36, 36, 36, 36, 36, 36,
|
606
605
|
36, 36, 36, 36, 36, 36, 36, 36,
|
606
|
+
36, 36, 115, 36, 112, 112, 112, 112,
|
607
607
|
112, 36, 36, 36, 36, 36, 36, 36,
|
608
608
|
36, 36, 36, 36, 36, 36, 36, 36,
|
609
|
+
36, 36, 36, 112, 36, 36, 36, 36,
|
610
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
609
611
|
36, 36, 36, 36, 36, 36, 36, 36,
|
610
612
|
36, 36, 36, 36, 36, 36, 36, 36,
|
611
613
|
36, 36, 36, 36, 36, 36, 36, 36,
|
@@ -615,217 +617,227 @@ self._re_scanner_indicies = [
|
|
615
617
|
36, 36, 36, 36, 36, 36, 36, 36,
|
616
618
|
36, 36, 36, 36, 36, 36, 36, 36,
|
617
619
|
36, 36, 36, 36, 36, 36, 36, 36,
|
618
|
-
36, 36, 36, 36, 36,
|
619
|
-
|
620
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
621
|
+
115, 36, 123, 123, 123, 123, 123, 123,
|
622
|
+
123, 123, 123, 123, 122, 122, 122, 122,
|
623
|
+
122, 122, 122, 123, 123, 123, 123, 123,
|
620
624
|
123, 122, 122, 122, 122, 122, 122, 122,
|
621
|
-
123, 123, 123, 123, 123, 123, 122, 122,
|
622
|
-
122, 122, 122, 122, 122, 122, 122, 122,
|
623
625
|
122, 122, 122, 122, 122, 122, 122, 122,
|
624
626
|
122, 122, 122, 122, 122, 122, 122, 122,
|
625
|
-
|
626
|
-
|
627
|
+
122, 122, 122, 123, 123, 123, 123, 123,
|
628
|
+
123, 122, 122, 122, 122, 122, 122, 122,
|
627
629
|
122, 122, 122, 122, 122, 122, 122, 122,
|
628
|
-
122, 122,
|
629
|
-
124,
|
630
|
+
122, 122, 122, 122, 122, 36, 122, 125,
|
631
|
+
124, 126, 124, 124, 124, 124, 124, 124,
|
632
|
+
124, 124, 127, 127, 127, 127, 127, 127,
|
633
|
+
127, 127, 127, 127, 124, 124, 124, 124,
|
634
|
+
124, 124, 124, 127, 127, 127, 127, 127,
|
630
635
|
127, 127, 127, 127, 127, 127, 127, 127,
|
631
|
-
127, 124, 124, 124, 124, 124, 124, 124,
|
632
636
|
127, 127, 127, 127, 127, 127, 127, 127,
|
637
|
+
127, 127, 127, 127, 127, 124, 124, 124,
|
638
|
+
124, 127, 124, 127, 127, 127, 127, 127,
|
633
639
|
127, 127, 127, 127, 127, 127, 127, 127,
|
634
640
|
127, 127, 127, 127, 127, 127, 127, 127,
|
635
|
-
127, 127,
|
636
|
-
|
637
|
-
|
638
|
-
127, 127, 127, 127, 127, 127, 127, 127,
|
639
|
-
127, 127, 124, 125, 124, 124, 124, 124,
|
640
|
-
124, 124, 128, 128, 128, 128, 128, 128,
|
641
|
-
128, 128, 128, 128, 124, 129, 129, 129,
|
642
|
-
129, 129, 129, 129, 129, 129, 129, 124,
|
643
|
-
124, 124, 124, 126, 124, 124, 129, 129,
|
644
|
-
129, 129, 129, 129, 129, 129, 129, 129,
|
641
|
+
127, 127, 127, 127, 127, 124, 125, 124,
|
642
|
+
124, 124, 124, 124, 124, 128, 128, 128,
|
643
|
+
128, 128, 128, 128, 128, 128, 128, 124,
|
645
644
|
129, 129, 129, 129, 129, 129, 129, 129,
|
645
|
+
129, 129, 124, 124, 124, 124, 126, 124,
|
646
|
+
124, 129, 129, 129, 129, 129, 129, 129,
|
646
647
|
129, 129, 129, 129, 129, 129, 129, 129,
|
647
|
-
124, 124, 124, 124, 129, 124, 129, 129,
|
648
648
|
129, 129, 129, 129, 129, 129, 129, 129,
|
649
|
+
129, 129, 129, 124, 124, 124, 124, 129,
|
650
|
+
124, 129, 129, 129, 129, 129, 129, 129,
|
649
651
|
129, 129, 129, 129, 129, 129, 129, 129,
|
650
652
|
129, 129, 129, 129, 129, 129, 129, 129,
|
651
|
-
|
653
|
+
129, 129, 129, 124, 36, 36, 36, 36,
|
654
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
655
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
656
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
657
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
658
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
659
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
660
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
661
|
+
36, 36, 36, 36, 36, 36, 130, 130,
|
662
|
+
130, 130, 130, 130, 130, 130, 130, 130,
|
652
663
|
130, 130, 130, 130, 130, 130, 130, 130,
|
653
664
|
130, 130, 130, 130, 130, 130, 130, 130,
|
654
|
-
130, 130, 130, 130,
|
665
|
+
130, 130, 130, 130, 131, 131, 131, 131,
|
655
666
|
131, 131, 131, 131, 131, 131, 131, 131,
|
656
|
-
131, 131, 131, 131,
|
657
|
-
132,
|
658
|
-
|
659
|
-
133, 133, 133, 133, 133,
|
660
|
-
134, 134,
|
667
|
+
131, 131, 131, 131, 132, 132, 132, 132,
|
668
|
+
132, 36, 36, 36, 36, 36, 36, 36,
|
669
|
+
36, 36, 36, 36, 36, 133, 133, 133,
|
670
|
+
133, 133, 133, 133, 133, 134, 134, 134,
|
671
|
+
134, 134, 133, 133, 133, 133, 133, 133,
|
661
672
|
133, 133, 133, 133, 133, 133, 133, 133,
|
662
|
-
133, 133, 133, 133,
|
663
|
-
|
664
|
-
|
665
|
-
136, 136, 136, 136, 136, 136, 136, 136,
|
666
|
-
136, 136, 136, 136, 136, 136, 144, 136,
|
667
|
-
136, 136, 136, 136, 136, 136, 136, 136,
|
673
|
+
133, 133, 133, 133, 135, 136, 136, 137,
|
674
|
+
138, 136, 136, 136, 139, 140, 141, 142,
|
675
|
+
136, 136, 143, 136, 136, 136, 136, 136,
|
668
676
|
136, 136, 136, 136, 136, 136, 136, 136,
|
677
|
+
136, 136, 136, 144, 136, 136, 136, 136,
|
669
678
|
136, 136, 136, 136, 136, 136, 136, 136,
|
670
|
-
136, 136, 145, 146, 31, 147, 136, 136,
|
671
679
|
136, 136, 136, 136, 136, 136, 136, 136,
|
680
|
+
136, 136, 136, 136, 136, 136, 136, 145,
|
681
|
+
146, 147, 148, 136, 136, 136, 136, 136,
|
672
682
|
136, 136, 136, 136, 136, 136, 136, 136,
|
673
683
|
136, 136, 136, 136, 136, 136, 136, 136,
|
674
|
-
136, 136,
|
684
|
+
136, 136, 136, 136, 136, 136, 136, 149,
|
685
|
+
150, 147, 136, 133, 136, 130, 130, 130,
|
675
686
|
130, 130, 130, 130, 130, 130, 130, 130,
|
676
687
|
130, 130, 130, 130, 130, 130, 130, 130,
|
677
688
|
130, 130, 130, 130, 130, 130, 130, 130,
|
678
|
-
130, 130, 130,
|
689
|
+
130, 130, 130, 151, 131, 131, 131, 131,
|
679
690
|
131, 131, 131, 131, 131, 131, 131, 131,
|
680
|
-
131, 131, 131, 131,
|
681
|
-
132, 132,
|
691
|
+
131, 131, 131, 131, 151, 132, 132, 132,
|
692
|
+
132, 132, 151, 133, 133, 133, 133, 133,
|
682
693
|
133, 133, 133, 133, 133, 133, 133, 133,
|
683
694
|
133, 133, 133, 133, 133, 133, 133, 133,
|
684
695
|
133, 133, 133, 133, 133, 133, 133, 133,
|
685
|
-
133, 133,
|
686
|
-
|
687
|
-
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
133, 133, 133,
|
699
|
-
134, 134, 134, 133, 133, 133, 133, 133,
|
696
|
+
133, 133, 151, 151, 151, 151, 151, 151,
|
697
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
698
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
699
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
700
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
701
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
702
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
703
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
704
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
705
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
706
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
707
|
+
151, 151, 151, 151, 151, 151, 151, 151,
|
708
|
+
151, 133, 151, 133, 133, 133, 133, 133,
|
709
|
+
133, 133, 133, 134, 134, 134, 134, 134,
|
700
710
|
133, 133, 133, 133, 133, 133, 133, 133,
|
701
|
-
133, 133, 133, 133, 133,
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
713
|
-
|
714
|
-
|
715
|
-
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
136,
|
720
|
-
136, 136, 136, 136, 136, 149, 136, 136,
|
721
|
-
136, 136, 136, 136, 136, 136, 136, 136,
|
711
|
+
133, 133, 133, 133, 133, 133, 133, 133,
|
712
|
+
133, 133, 135, 152, 152, 152, 152, 152,
|
713
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
714
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
715
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
716
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
717
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
718
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
719
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
720
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
721
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
722
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
723
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
724
|
+
152, 133, 152, 135, 135, 135, 135, 135,
|
725
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
726
|
+
152, 152, 152, 152, 152, 152, 152, 152,
|
727
|
+
152, 152, 135, 152, 136, 136, 136, 151,
|
728
|
+
136, 136, 136, 151, 151, 151, 151, 136,
|
729
|
+
136, 151, 136, 136, 136, 136, 136, 136,
|
722
730
|
136, 136, 136, 136, 136, 136, 136, 136,
|
731
|
+
136, 136, 151, 136, 136, 136, 136, 136,
|
723
732
|
136, 136, 136, 136, 136, 136, 136, 136,
|
724
|
-
136, 149, 149, 149, 149, 136, 136, 136,
|
725
733
|
136, 136, 136, 136, 136, 136, 136, 136,
|
734
|
+
136, 136, 136, 136, 136, 136, 151, 151,
|
735
|
+
151, 151, 136, 136, 136, 136, 136, 136,
|
726
736
|
136, 136, 136, 136, 136, 136, 136, 136,
|
727
737
|
136, 136, 136, 136, 136, 136, 136, 136,
|
728
|
-
136,
|
738
|
+
136, 136, 136, 136, 136, 136, 151, 151,
|
739
|
+
151, 136, 151, 9, 8, 8, 8, 8,
|
729
740
|
8, 8, 8, 8, 8, 8, 8, 8,
|
730
741
|
8, 8, 8, 8, 8, 8, 8, 8,
|
731
|
-
8, 8,
|
732
|
-
|
733
|
-
137, 137,
|
742
|
+
8, 8, 137, 137, 137, 8, 137, 137,
|
743
|
+
137, 8, 8, 8, 8, 137, 137, 8,
|
744
|
+
137, 137, 137, 137, 137, 137, 137, 137,
|
734
745
|
137, 137, 137, 137, 137, 137, 137, 137,
|
735
|
-
|
746
|
+
8, 137, 137, 137, 137, 137, 137, 137,
|
736
747
|
137, 137, 137, 137, 137, 137, 137, 137,
|
737
748
|
137, 137, 137, 137, 137, 137, 137, 137,
|
738
|
-
137, 137, 137, 137,
|
739
|
-
8, 8, 8, 137, 137, 137, 137, 137,
|
749
|
+
137, 137, 137, 137, 8, 8, 8, 8,
|
740
750
|
137, 137, 137, 137, 137, 137, 137, 137,
|
741
751
|
137, 137, 137, 137, 137, 137, 137, 137,
|
742
|
-
137, 137, 137, 137, 137, 137, 137,
|
743
|
-
|
744
|
-
|
745
|
-
|
746
|
-
|
747
|
-
|
748
|
-
|
749
|
-
|
750
|
-
|
751
|
-
|
752
|
-
|
753
|
-
|
754
|
-
|
755
|
-
|
756
|
-
|
757
|
-
|
758
|
-
|
759
|
-
|
760
|
-
|
761
|
-
|
762
|
-
|
763
|
-
|
764
|
-
|
765
|
-
|
766
|
-
|
767
|
-
|
768
|
-
|
769
|
-
158, 158, 158, 158, 158, 158, 158, 158,
|
770
|
-
159, 158, 161, 160, 160, 160, 160, 160,
|
752
|
+
137, 137, 137, 137, 137, 137, 137, 137,
|
753
|
+
137, 137, 137, 137, 8, 8, 8, 137,
|
754
|
+
8, 154, 153, 15, 156, 11, 156, 156,
|
755
|
+
156, 14, 157, 155, 156, 156, 156, 156,
|
756
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
757
|
+
156, 156, 156, 156, 13, 156, 158, 15,
|
758
|
+
13, 156, 156, 156, 156, 156, 156, 156,
|
759
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
760
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
761
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
762
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
763
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
764
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
765
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
766
|
+
13, 156, 155, 156, 155, 156, 156, 156,
|
767
|
+
155, 155, 155, 156, 156, 156, 156, 156,
|
768
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
769
|
+
156, 156, 156, 159, 156, 155, 155, 155,
|
770
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
771
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
772
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
773
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
774
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
775
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
776
|
+
156, 156, 156, 156, 156, 156, 156, 156,
|
777
|
+
156, 156, 156, 156, 156, 156, 156, 155,
|
778
|
+
156, 161, 160, 160, 160, 160, 160, 160,
|
771
779
|
160, 160, 160, 160, 160, 160, 160, 160,
|
772
|
-
160, 160, 160, 160, 160,
|
773
|
-
163, 162, 162, 162, 162, 162, 162, 162,
|
780
|
+
160, 160, 160, 160, 160, 161, 160, 163,
|
774
781
|
162, 162, 162, 162, 162, 162, 162, 162,
|
775
|
-
162, 162, 162, 162,
|
776
|
-
|
777
|
-
|
778
|
-
164, 164, 164, 164, 164, 164, 164,
|
779
|
-
164,
|
780
|
-
|
781
|
-
|
782
|
-
|
783
|
-
|
784
|
-
|
785
|
-
|
786
|
-
|
787
|
-
|
788
|
-
|
789
|
-
36, 36, 36, 36, 36, 36, 36, 170,
|
790
|
-
36, 36, 36, 170, 36, 36, 36, 36,
|
791
|
-
36, 36, 36, 36, 36, 36, 170, 36,
|
792
|
-
36, 36, 170, 36, 171, 36, 36, 36,
|
793
|
-
36, 36, 36, 36, 36, 36, 36, 36,
|
794
|
-
36, 36, 36, 36, 36, 36, 36, 36,
|
795
|
-
36, 36, 36, 36, 36, 36, 36, 36,
|
796
|
-
36, 36, 36, 36, 171, 36, 172, 172,
|
797
|
-
172, 172, 172, 172, 172, 172, 172, 172,
|
782
|
+
162, 162, 162, 162, 162, 162, 162, 162,
|
783
|
+
162, 162, 162, 163, 162, 165, 164, 164,
|
784
|
+
164, 164, 164, 164, 164, 164, 164, 164,
|
785
|
+
164, 164, 164, 164, 164, 164, 164, 164,
|
786
|
+
164, 165, 164, 167, 167, 166, 166, 166,
|
787
|
+
166, 167, 166, 166, 166, 168, 166, 166,
|
788
|
+
166, 166, 166, 166, 166, 166, 166, 166,
|
789
|
+
166, 166, 166, 166, 167, 166, 166, 166,
|
790
|
+
166, 166, 166, 166, 167, 166, 166, 166,
|
791
|
+
166, 169, 166, 166, 166, 169, 166, 166,
|
792
|
+
166, 166, 166, 166, 166, 166, 166, 166,
|
793
|
+
166, 166, 166, 166, 167, 166, 171, 170,
|
794
|
+
170, 170, 34, 34, 34, 34, 34, 34,
|
795
|
+
34, 34, 34, 34, 170, 173, 172, 172,
|
798
796
|
172, 172, 172, 172, 172, 172, 172, 172,
|
799
797
|
172, 172, 172, 172, 172, 172, 172, 172,
|
800
|
-
172,
|
801
|
-
|
802
|
-
|
803
|
-
|
798
|
+
172, 173, 172, 174, 36, 36, 36, 174,
|
799
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
800
|
+
36, 174, 174, 36, 36, 36, 174, 174,
|
801
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
802
|
+
36, 36, 36, 174, 36, 36, 36, 174,
|
803
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
804
|
+
36, 36, 174, 36, 36, 36, 174, 36,
|
805
|
+
175, 36, 36, 36, 36, 36, 36, 36,
|
806
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
807
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
808
|
+
36, 36, 36, 36, 36, 36, 36, 36,
|
809
|
+
175, 36, 176, 176, 176, 176, 176, 176,
|
810
|
+
176, 176, 176, 176, 176, 176, 176, 176,
|
811
|
+
176, 176, 176, 176, 176, 176, 176, 176,
|
812
|
+
176, 176, 176, 176, 176, 176, 176, 176,
|
813
|
+
177, 177, 177, 177, 177, 177, 177, 177,
|
814
|
+
177, 177, 177, 177, 177, 177, 177, 177,
|
815
|
+
178, 178, 178, 178, 178, 41, 41, 41,
|
804
816
|
41, 41, 41, 41, 41, 41, 41, 41,
|
805
817
|
41, 41, 41, 41, 41, 41, 41, 41,
|
806
818
|
41, 41, 41, 41, 41, 41, 41, 41,
|
807
819
|
41, 41, 41, 41, 41, 41, 41, 41,
|
808
820
|
41, 41, 41, 41, 41, 41, 41, 41,
|
809
|
-
|
810
|
-
|
821
|
+
41, 41, 41, 41, 179, 41, 180, 41,
|
822
|
+
179, 179, 179, 179, 41, 181, 179, 41,
|
811
823
|
41, 41, 41, 41, 41, 41, 41, 41,
|
812
|
-
41, 41, 41,
|
824
|
+
41, 41, 41, 41, 41, 41, 41, 179,
|
813
825
|
41, 41, 41, 41, 41, 41, 41, 41,
|
814
826
|
41, 41, 41, 41, 41, 41, 41, 41,
|
815
|
-
41, 41, 41, 41, 41, 41, 41, 178,
|
816
|
-
179, 180, 181, 41, 41, 41, 41, 41,
|
817
827
|
41, 41, 41, 41, 41, 41, 41, 41,
|
828
|
+
41, 41, 41, 182, 183, 184, 185, 41,
|
818
829
|
41, 41, 41, 41, 41, 41, 41, 41,
|
819
|
-
41, 41, 41, 41, 41, 41, 41, 175,
|
820
|
-
175, 175, 41, 41, 41, 41, 41, 41,
|
821
830
|
41, 41, 41, 41, 41, 41, 41, 41,
|
822
831
|
41, 41, 41, 41, 41, 41, 41, 41,
|
832
|
+
41, 41, 41, 179, 179, 179, 41, 41,
|
823
833
|
41, 41, 41, 41, 41, 41, 41, 41,
|
824
834
|
41, 41, 41, 41, 41, 41, 41, 41,
|
825
835
|
41, 41, 41, 41, 41, 41, 41, 41,
|
826
836
|
41, 41, 41, 41, 41, 41, 41, 41,
|
827
837
|
41, 41, 41, 41, 41, 41, 41, 41,
|
828
|
-
41, 41, 41,
|
838
|
+
41, 41, 41, 41, 41, 41, 41, 41,
|
839
|
+
41, 41, 41, 41, 41, 41, 41, 41,
|
840
|
+
41, 41, 41, 41, 41, 41, 41, 186,
|
829
841
|
42, 42, 42, 42, 42, 42, 42, 42,
|
830
842
|
42, 42, 42, 42, 42, 42, 42, 42,
|
831
843
|
42, 42, 42, 42, 42, 42, 42, 42,
|
@@ -833,87 +845,87 @@ self._re_scanner_indicies = [
|
|
833
845
|
42, 42, 42, 42, 42, 42, 42, 42,
|
834
846
|
42, 42, 42, 42, 42, 42, 42, 42,
|
835
847
|
42, 42, 42, 42, 42, 42, 42, 42,
|
836
|
-
42, 42, 42, 42,
|
837
|
-
|
838
|
-
|
839
|
-
|
840
|
-
|
841
|
-
|
842
|
-
|
843
|
-
|
844
|
-
|
845
|
-
|
846
|
-
|
847
|
-
|
848
|
-
|
849
|
-
|
850
|
-
|
851
|
-
|
852
|
-
|
853
|
-
189, 189, 189, 189, 189, 191, 189, 189,
|
854
|
-
192, 189, 194, 194, 194, 194, 194, 194,
|
855
|
-
194, 194, 194, 194, 193, 193, 193, 193,
|
856
|
-
193, 193, 193, 194, 194, 194, 193, 193,
|
857
|
-
193, 194, 193, 193, 193, 194, 193, 194,
|
858
|
-
193, 193, 193, 193, 194, 193, 193, 193,
|
859
|
-
193, 193, 194, 193, 194, 193, 193, 193,
|
860
|
-
193, 193, 193, 193, 193, 194, 193, 193,
|
861
|
-
193, 194, 193, 193, 193, 194, 193, 193,
|
848
|
+
42, 42, 42, 42, 42, 42, 42, 42,
|
849
|
+
186, 187, 187, 187, 187, 187, 187, 187,
|
850
|
+
187, 187, 187, 187, 187, 187, 187, 187,
|
851
|
+
187, 187, 187, 187, 187, 187, 187, 187,
|
852
|
+
187, 187, 187, 187, 187, 187, 187, 187,
|
853
|
+
187, 187, 187, 187, 187, 187, 187, 187,
|
854
|
+
187, 187, 187, 187, 187, 187, 187, 187,
|
855
|
+
187, 187, 187, 187, 187, 187, 187, 187,
|
856
|
+
187, 187, 187, 187, 187, 187, 187, 187,
|
857
|
+
187, 186, 188, 186, 190, 189, 189, 189,
|
858
|
+
189, 189, 189, 189, 189, 189, 189, 189,
|
859
|
+
189, 189, 189, 189, 189, 189, 189, 189,
|
860
|
+
189, 189, 189, 189, 189, 189, 189, 189,
|
861
|
+
189, 189, 189, 189, 189, 189, 189, 189,
|
862
|
+
189, 189, 189, 189, 189, 189, 189, 189,
|
863
|
+
189, 189, 189, 189, 189, 189, 189, 189,
|
864
|
+
189, 189, 189, 191, 189, 194, 193, 193,
|
862
865
|
193, 193, 193, 193, 193, 193, 193, 193,
|
863
|
-
193,
|
864
|
-
|
865
|
-
|
866
|
-
198, 198,
|
867
|
-
|
868
|
-
|
869
|
-
|
870
|
-
|
871
|
-
|
872
|
-
|
873
|
-
|
874
|
-
|
875
|
-
|
876
|
-
|
877
|
-
|
878
|
-
|
866
|
+
193, 195, 193, 193, 196, 193, 198, 198,
|
867
|
+
198, 198, 198, 198, 198, 198, 198, 198,
|
868
|
+
197, 197, 197, 197, 197, 197, 197, 198,
|
869
|
+
198, 198, 197, 197, 197, 198, 197, 197,
|
870
|
+
197, 198, 197, 198, 197, 197, 197, 197,
|
871
|
+
198, 197, 197, 197, 197, 197, 198, 197,
|
872
|
+
198, 197, 197, 197, 197, 197, 197, 197,
|
873
|
+
197, 198, 197, 197, 197, 198, 197, 197,
|
874
|
+
197, 198, 197, 197, 197, 197, 197, 197,
|
875
|
+
197, 197, 197, 197, 197, 197, 197, 197,
|
876
|
+
198, 197, 200, 199, 199, 199, 200, 200,
|
877
|
+
200, 200, 199, 199, 200, 199, 201, 202,
|
878
|
+
202, 202, 202, 202, 202, 202, 203, 203,
|
879
|
+
199, 199, 199, 199, 199, 200, 199, 36,
|
880
|
+
36, 204, 205, 199, 199, 36, 205, 199,
|
881
|
+
199, 36, 199, 206, 199, 199, 207, 199,
|
882
|
+
205, 205, 199, 199, 199, 205, 205, 199,
|
883
|
+
36, 200, 200, 200, 200, 199, 199, 208,
|
884
|
+
208, 101, 205, 208, 208, 36, 205, 199,
|
885
|
+
199, 36, 199, 199, 208, 199, 207, 199,
|
886
|
+
208, 205, 208, 209, 208, 205, 210, 199,
|
887
|
+
36, 200, 200, 200, 199, 212, 212, 212,
|
888
|
+
212, 212, 212, 212, 212, 211, 214, 214,
|
889
|
+
214, 214, 214, 214, 214, 214, 213, 216,
|
890
|
+
102, 218, 217, 102, 220, 107, 107, 107,
|
879
891
|
107, 107, 107, 107, 107, 107, 107, 107,
|
880
892
|
107, 107, 107, 107, 107, 107, 107, 107,
|
881
893
|
107, 107, 107, 107, 107, 107, 107, 107,
|
882
|
-
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
|
888
|
-
|
889
|
-
|
890
|
-
|
891
|
-
|
892
|
-
|
893
|
-
|
894
|
-
|
895
|
-
127,
|
894
|
+
107, 107, 107, 107, 221, 107, 223, 222,
|
895
|
+
107, 110, 107, 226, 226, 226, 226, 226,
|
896
|
+
226, 226, 226, 226, 226, 225, 225, 225,
|
897
|
+
225, 225, 225, 225, 226, 226, 226, 226,
|
898
|
+
226, 226, 225, 225, 225, 225, 225, 225,
|
899
|
+
225, 225, 225, 225, 225, 225, 225, 225,
|
900
|
+
225, 225, 225, 225, 225, 225, 225, 225,
|
901
|
+
225, 225, 225, 225, 226, 226, 226, 226,
|
902
|
+
226, 226, 225, 228, 227, 227, 227, 227,
|
903
|
+
227, 229, 227, 227, 227, 230, 230, 230,
|
904
|
+
230, 230, 230, 230, 230, 230, 227, 227,
|
905
|
+
231, 227, 126, 232, 232, 232, 232, 232,
|
906
|
+
232, 232, 232, 127, 127, 127, 127, 127,
|
907
|
+
127, 127, 127, 127, 127, 232, 232, 232,
|
908
|
+
232, 232, 232, 232, 127, 127, 127, 127,
|
896
909
|
127, 127, 127, 127, 127, 127, 127, 127,
|
897
910
|
127, 127, 127, 127, 127, 127, 127, 127,
|
911
|
+
127, 127, 127, 127, 127, 127, 232, 232,
|
912
|
+
232, 232, 127, 232, 127, 127, 127, 127,
|
898
913
|
127, 127, 127, 127, 127, 127, 127, 127,
|
899
|
-
127, 127, 228, 228, 228, 228, 127, 228,
|
900
914
|
127, 127, 127, 127, 127, 127, 127, 127,
|
901
|
-
127, 127, 127, 127, 127, 127,
|
902
|
-
|
903
|
-
|
904
|
-
128, 128, 128, 128,
|
905
|
-
|
906
|
-
|
907
|
-
|
908
|
-
129, 228, 228, 228, 228, 126, 228, 228,
|
909
|
-
129, 129, 129, 129, 129, 129, 129, 129,
|
915
|
+
127, 127, 127, 127, 127, 127, 232, 128,
|
916
|
+
128, 128, 128, 128, 128, 128, 128, 128,
|
917
|
+
232, 125, 232, 232, 232, 232, 232, 232,
|
918
|
+
128, 128, 128, 128, 128, 128, 128, 128,
|
919
|
+
128, 128, 232, 129, 129, 129, 129, 129,
|
920
|
+
129, 129, 129, 129, 129, 232, 232, 232,
|
921
|
+
232, 126, 232, 232, 129, 129, 129, 129,
|
910
922
|
129, 129, 129, 129, 129, 129, 129, 129,
|
911
923
|
129, 129, 129, 129, 129, 129, 129, 129,
|
912
|
-
129, 129,
|
924
|
+
129, 129, 129, 129, 129, 129, 232, 232,
|
925
|
+
232, 232, 129, 232, 129, 129, 129, 129,
|
913
926
|
129, 129, 129, 129, 129, 129, 129, 129,
|
914
927
|
129, 129, 129, 129, 129, 129, 129, 129,
|
915
|
-
129, 129, 129, 129, 129, 129,
|
916
|
-
129, 129, 228, 0
|
928
|
+
129, 129, 129, 129, 129, 129, 232, 0
|
917
929
|
]
|
918
930
|
|
919
931
|
class << self
|
@@ -921,35 +933,36 @@ class << self
|
|
921
933
|
private :_re_scanner_trans_targs, :_re_scanner_trans_targs=
|
922
934
|
end
|
923
935
|
self._re_scanner_trans_targs = [
|
924
|
-
|
925
|
-
7,
|
926
|
-
11,
|
927
|
-
15, 17, 20, 22, 24, 21, 23,
|
928
|
-
26,
|
929
|
-
|
930
|
-
|
931
|
-
|
932
|
-
|
933
|
-
|
934
|
-
|
935
|
-
|
936
|
-
|
937
|
-
|
938
|
-
|
939
|
-
|
940
|
-
|
941
|
-
|
942
|
-
|
943
|
-
|
944
|
-
|
945
|
-
|
946
|
-
133, 134,
|
947
|
-
|
948
|
-
|
949
|
-
|
950
|
-
139,
|
951
|
-
|
952
|
-
|
936
|
+
111, 112, 3, 113, 5, 6, 114, 111,
|
937
|
+
7, 111, 111, 8, 111, 111, 9, 111,
|
938
|
+
11, 111, 13, 19, 111, 14, 16, 18,
|
939
|
+
15, 17, 20, 22, 24, 21, 23, 111,
|
940
|
+
26, 128, 27, 29, 0, 30, 31, 130,
|
941
|
+
131, 131, 32, 131, 131, 131, 131, 36,
|
942
|
+
37, 131, 39, 40, 51, 55, 59, 63,
|
943
|
+
67, 71, 76, 80, 82, 85, 41, 48,
|
944
|
+
42, 46, 43, 44, 45, 131, 47, 49,
|
945
|
+
50, 52, 53, 54, 56, 57, 58, 60,
|
946
|
+
61, 62, 64, 65, 66, 68, 69, 70,
|
947
|
+
72, 74, 73, 75, 77, 78, 79, 81,
|
948
|
+
83, 84, 87, 88, 131, 90, 139, 142,
|
949
|
+
139, 144, 93, 139, 145, 139, 147, 96,
|
950
|
+
99, 97, 98, 139, 100, 101, 102, 103,
|
951
|
+
104, 105, 139, 149, 150, 150, 107, 108,
|
952
|
+
109, 110, 1, 2, 4, 115, 116, 117,
|
953
|
+
118, 119, 111, 120, 111, 123, 124, 111,
|
954
|
+
125, 111, 126, 111, 111, 127, 111, 111,
|
955
|
+
111, 111, 121, 111, 122, 111, 10, 111,
|
956
|
+
111, 111, 111, 111, 111, 111, 111, 111,
|
957
|
+
111, 12, 111, 25, 111, 111, 129, 28,
|
958
|
+
132, 133, 134, 131, 135, 136, 137, 131,
|
959
|
+
131, 131, 131, 33, 131, 131, 34, 131,
|
960
|
+
131, 131, 35, 38, 86, 138, 138, 139,
|
961
|
+
139, 140, 140, 139, 89, 139, 92, 139,
|
962
|
+
139, 95, 106, 139, 141, 139, 139, 139,
|
963
|
+
143, 139, 91, 139, 146, 148, 139, 94,
|
964
|
+
139, 139, 139, 150, 151, 152, 153, 154,
|
965
|
+
150
|
953
966
|
]
|
954
967
|
|
955
968
|
class << self
|
@@ -969,23 +982,24 @@ self._re_scanner_trans_actions = [
|
|
969
982
|
0, 0, 0, 0, 0, 0, 0, 0,
|
970
983
|
0, 0, 0, 0, 0, 0, 0, 0,
|
971
984
|
0, 0, 0, 0, 0, 0, 0, 0,
|
972
|
-
0, 0, 0, 0, 23, 0,
|
973
|
-
|
974
|
-
0, 0, 0,
|
975
|
-
0, 0,
|
985
|
+
0, 0, 0, 0, 23, 0, 25, 0,
|
986
|
+
26, 0, 0, 27, 0, 28, 0, 0,
|
987
|
+
0, 0, 0, 29, 0, 0, 0, 0,
|
988
|
+
0, 0, 30, 0, 31, 32, 0, 0,
|
976
989
|
0, 0, 0, 0, 0, 0, 0, 0,
|
977
|
-
0,
|
978
|
-
0,
|
979
|
-
45, 46,
|
980
|
-
51, 52, 53, 54, 55, 56, 57,
|
981
|
-
|
982
|
-
0,
|
983
|
-
68, 69,
|
984
|
-
|
985
|
-
|
986
|
-
|
987
|
-
|
988
|
-
|
990
|
+
0, 35, 36, 37, 38, 0, 0, 39,
|
991
|
+
0, 40, 35, 41, 42, 35, 43, 44,
|
992
|
+
45, 46, 47, 48, 0, 49, 0, 50,
|
993
|
+
51, 52, 53, 54, 55, 56, 57, 58,
|
994
|
+
59, 0, 60, 0, 61, 62, 64, 0,
|
995
|
+
0, 35, 35, 65, 0, 35, 66, 67,
|
996
|
+
68, 69, 70, 0, 71, 72, 0, 73,
|
997
|
+
74, 75, 0, 0, 0, 76, 77, 78,
|
998
|
+
79, 80, 81, 82, 0, 83, 0, 84,
|
999
|
+
85, 0, 0, 86, 0, 87, 88, 89,
|
1000
|
+
35, 90, 0, 91, 35, 0, 92, 0,
|
1001
|
+
93, 94, 95, 96, 35, 35, 35, 35,
|
1002
|
+
97
|
989
1003
|
]
|
990
1004
|
|
991
1005
|
class << self
|
@@ -1006,13 +1020,13 @@ self._re_scanner_to_state_actions = [
|
|
1006
1020
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1007
1021
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1008
1022
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1009
|
-
0, 0, 0, 0, 0, 0,
|
1023
|
+
0, 0, 0, 0, 0, 0, 0, 33,
|
1010
1024
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1011
|
-
0, 0, 0, 0, 0, 0, 0,
|
1012
|
-
|
1013
|
-
|
1014
|
-
0, 0, 0, 0,
|
1015
|
-
0
|
1025
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
1026
|
+
0, 63, 63, 63, 0, 0, 0, 0,
|
1027
|
+
0, 0, 63, 63, 0, 0, 0, 0,
|
1028
|
+
0, 0, 0, 0, 0, 0, 63, 0,
|
1029
|
+
0, 0, 0
|
1016
1030
|
]
|
1017
1031
|
|
1018
1032
|
class << self
|
@@ -1033,13 +1047,13 @@ self._re_scanner_from_state_actions = [
|
|
1033
1047
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1034
1048
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1035
1049
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1036
|
-
0, 0, 0, 0, 0, 0,
|
1050
|
+
0, 0, 0, 0, 0, 0, 0, 34,
|
1037
1051
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1038
|
-
0, 0, 0, 0, 0, 0, 0,
|
1039
|
-
|
1040
|
-
|
1041
|
-
0, 0, 0, 0,
|
1042
|
-
0
|
1052
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
1053
|
+
0, 34, 34, 34, 0, 0, 0, 0,
|
1054
|
+
0, 0, 34, 34, 0, 0, 0, 0,
|
1055
|
+
0, 0, 0, 0, 0, 0, 34, 0,
|
1056
|
+
0, 0, 0
|
1043
1057
|
]
|
1044
1058
|
|
1045
1059
|
class << self
|
@@ -1050,7 +1064,7 @@ self._re_scanner_eof_actions = [
|
|
1050
1064
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1051
1065
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1052
1066
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1053
|
-
0,
|
1067
|
+
0, 0, 0, 0, 13, 13, 13, 13,
|
1054
1068
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1055
1069
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1056
1070
|
0, 0, 0, 0, 0, 0, 0, 0,
|
@@ -1058,15 +1072,15 @@ self._re_scanner_eof_actions = [
|
|
1058
1072
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1059
1073
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1060
1074
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1061
|
-
|
1062
|
-
|
1063
|
-
|
1075
|
+
0, 24, 24, 0, 24, 24, 0, 24,
|
1076
|
+
24, 24, 24, 24, 24, 24, 24, 24,
|
1077
|
+
24, 24, 24, 0, 0, 0, 0, 0,
|
1064
1078
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1065
1079
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1066
|
-
0,
|
1067
|
-
0,
|
1080
|
+
0, 0, 0, 24, 0, 0, 0, 0,
|
1081
|
+
0, 0, 0, 24, 0, 0, 0, 0,
|
1068
1082
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1069
|
-
0
|
1083
|
+
0, 0, 0
|
1070
1084
|
]
|
1071
1085
|
|
1072
1086
|
class << self
|
@@ -1077,33 +1091,33 @@ self._re_scanner_eof_trans = [
|
|
1077
1091
|
0, 1, 1, 1, 1, 1, 1, 8,
|
1078
1092
|
11, 11, 11, 11, 18, 18, 18, 18,
|
1079
1093
|
18, 18, 18, 18, 18, 18, 18, 18,
|
1080
|
-
18,
|
1081
|
-
41,
|
1094
|
+
18, 32, 32, 32, 0, 0, 0, 0,
|
1095
|
+
41, 41, 44, 46, 46, 46, 46, 46,
|
1082
1096
|
46, 46, 46, 46, 46, 46, 46, 46,
|
1083
1097
|
46, 46, 46, 46, 46, 46, 46, 46,
|
1084
1098
|
46, 46, 46, 46, 46, 46, 46, 46,
|
1085
1099
|
46, 46, 46, 46, 46, 46, 46, 46,
|
1086
1100
|
46, 46, 46, 46, 46, 46, 46, 46,
|
1087
1101
|
46, 46, 46, 46, 46, 46, 46, 46,
|
1088
|
-
0, 0, 105, 0, 0, 110, 0,
|
1102
|
+
46, 0, 0, 105, 0, 0, 110, 0,
|
1089
1103
|
0, 0, 0, 0, 0, 0, 0, 0,
|
1090
|
-
0, 0, 125, 125, 125, 125, 0,
|
1091
|
-
|
1092
|
-
154,
|
1093
|
-
|
1094
|
-
|
1095
|
-
216,
|
1096
|
-
|
1104
|
+
0, 0, 0, 125, 125, 125, 125, 0,
|
1105
|
+
152, 152, 152, 152, 153, 153, 152, 152,
|
1106
|
+
154, 156, 156, 161, 163, 165, 167, 171,
|
1107
|
+
173, 0, 0, 0, 187, 187, 187, 187,
|
1108
|
+
190, 193, 0, 0, 212, 214, 216, 216,
|
1109
|
+
216, 220, 220, 220, 220, 225, 0, 233,
|
1110
|
+
233, 233, 233
|
1097
1111
|
]
|
1098
1112
|
|
1099
1113
|
class << self
|
1100
1114
|
attr_accessor :re_scanner_start
|
1101
1115
|
end
|
1102
|
-
self.re_scanner_start =
|
1116
|
+
self.re_scanner_start = 111;
|
1103
1117
|
class << self
|
1104
1118
|
attr_accessor :re_scanner_first_final
|
1105
1119
|
end
|
1106
|
-
self.re_scanner_first_final =
|
1120
|
+
self.re_scanner_first_final = 111;
|
1107
1121
|
class << self
|
1108
1122
|
attr_accessor :re_scanner_error
|
1109
1123
|
end
|
@@ -1112,36 +1126,36 @@ self.re_scanner_error = 0;
|
|
1112
1126
|
class << self
|
1113
1127
|
attr_accessor :re_scanner_en_char_type
|
1114
1128
|
end
|
1115
|
-
self.re_scanner_en_char_type =
|
1129
|
+
self.re_scanner_en_char_type = 129;
|
1116
1130
|
class << self
|
1117
1131
|
attr_accessor :re_scanner_en_unicode_property
|
1118
1132
|
end
|
1119
|
-
self.re_scanner_en_unicode_property =
|
1133
|
+
self.re_scanner_en_unicode_property = 130;
|
1120
1134
|
class << self
|
1121
1135
|
attr_accessor :re_scanner_en_character_set
|
1122
1136
|
end
|
1123
|
-
self.re_scanner_en_character_set =
|
1137
|
+
self.re_scanner_en_character_set = 131;
|
1124
1138
|
class << self
|
1125
1139
|
attr_accessor :re_scanner_en_set_escape_sequence
|
1126
1140
|
end
|
1127
|
-
self.re_scanner_en_set_escape_sequence =
|
1141
|
+
self.re_scanner_en_set_escape_sequence = 138;
|
1128
1142
|
class << self
|
1129
1143
|
attr_accessor :re_scanner_en_escape_sequence
|
1130
1144
|
end
|
1131
|
-
self.re_scanner_en_escape_sequence =
|
1145
|
+
self.re_scanner_en_escape_sequence = 139;
|
1132
1146
|
class << self
|
1133
1147
|
attr_accessor :re_scanner_en_conditional_expression
|
1134
1148
|
end
|
1135
|
-
self.re_scanner_en_conditional_expression =
|
1149
|
+
self.re_scanner_en_conditional_expression = 150;
|
1136
1150
|
class << self
|
1137
1151
|
attr_accessor :re_scanner_en_main
|
1138
1152
|
end
|
1139
|
-
self.re_scanner_en_main =
|
1153
|
+
self.re_scanner_en_main = 111;
|
1140
1154
|
|
1141
1155
|
|
1142
|
-
# line
|
1156
|
+
# line 768 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1143
1157
|
|
1144
|
-
# line
|
1158
|
+
# line 1158 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner.rb"
|
1145
1159
|
begin
|
1146
1160
|
p ||= 0
|
1147
1161
|
pe ||= data.length
|
@@ -1152,9 +1166,9 @@ begin
|
|
1152
1166
|
act = 0
|
1153
1167
|
end
|
1154
1168
|
|
1155
|
-
# line
|
1169
|
+
# line 769 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1156
1170
|
|
1157
|
-
# line
|
1171
|
+
# line 1171 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner.rb"
|
1158
1172
|
begin
|
1159
1173
|
testEof = false
|
1160
1174
|
_slen, _trans, _keys, _inds, _acts, _nacts = nil
|
@@ -1177,12 +1191,12 @@ begin
|
|
1177
1191
|
end
|
1178
1192
|
if _goto_level <= _resume
|
1179
1193
|
case _re_scanner_from_state_actions[cs]
|
1180
|
-
when
|
1194
|
+
when 34 then
|
1181
1195
|
# line 1 "NONE"
|
1182
1196
|
begin
|
1183
1197
|
ts = p
|
1184
1198
|
end
|
1185
|
-
# line
|
1199
|
+
# line 1199 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner.rb"
|
1186
1200
|
end
|
1187
1201
|
_keys = cs << 1
|
1188
1202
|
_inds = _re_scanner_index_offsets[cs]
|
@@ -1201,28 +1215,21 @@ ts = p
|
|
1201
1215
|
cs = _re_scanner_trans_targs[_trans]
|
1202
1216
|
if _re_scanner_trans_actions[_trans] != 0
|
1203
1217
|
case _re_scanner_trans_actions[_trans]
|
1204
|
-
when
|
1205
|
-
# line
|
1206
|
-
begin
|
1207
|
-
|
1208
|
-
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
1209
|
-
raise PrematureEndError.new( text )
|
1210
|
-
end
|
1211
|
-
when 36 then
|
1212
|
-
# line 143 "/Users/jannoschmuller/code/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1218
|
+
when 37 then
|
1219
|
+
# line 149 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1213
1220
|
begin
|
1214
1221
|
self.group_depth = group_depth + 1 end
|
1215
1222
|
when 6 then
|
1216
|
-
# line
|
1223
|
+
# line 150 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1217
1224
|
begin
|
1218
1225
|
self.group_depth = group_depth - 1 end
|
1219
|
-
when
|
1226
|
+
when 35 then
|
1220
1227
|
# line 1 "NONE"
|
1221
1228
|
begin
|
1222
1229
|
te = p+1
|
1223
1230
|
end
|
1224
|
-
when
|
1225
|
-
# line 12 "/Users/
|
1231
|
+
when 64 then
|
1232
|
+
# line 12 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/char_type.rl"
|
1226
1233
|
begin
|
1227
1234
|
te = p+1
|
1228
1235
|
begin
|
@@ -1248,7 +1255,7 @@ te = p+1
|
|
1248
1255
|
end
|
1249
1256
|
end
|
1250
1257
|
when 14 then
|
1251
|
-
# line 16 "/Users/
|
1258
|
+
# line 16 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/property.rl"
|
1252
1259
|
begin
|
1253
1260
|
te = p+1
|
1254
1261
|
begin
|
@@ -1272,7 +1279,7 @@ te = p+1
|
|
1272
1279
|
end
|
1273
1280
|
end
|
1274
1281
|
when 18 then
|
1275
|
-
# line
|
1282
|
+
# line 177 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1276
1283
|
begin
|
1277
1284
|
te = p+1
|
1278
1285
|
begin # special case, emits two tokens
|
@@ -1280,8 +1287,8 @@ te = p+1
|
|
1280
1287
|
emit(:set, :intersection, '&&', ts, te)
|
1281
1288
|
end
|
1282
1289
|
end
|
1283
|
-
when
|
1284
|
-
# line
|
1290
|
+
when 69 then
|
1291
|
+
# line 182 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1285
1292
|
begin
|
1286
1293
|
te = p+1
|
1287
1294
|
begin
|
@@ -1293,31 +1300,31 @@ te = p+1
|
|
1293
1300
|
end
|
1294
1301
|
end
|
1295
1302
|
end
|
1296
|
-
when
|
1297
|
-
# line
|
1303
|
+
when 71 then
|
1304
|
+
# line 203 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1298
1305
|
begin
|
1299
1306
|
te = p+1
|
1300
1307
|
begin
|
1301
1308
|
emit(:set, :intersection, *text(data, ts, te))
|
1302
1309
|
end
|
1303
1310
|
end
|
1304
|
-
when
|
1305
|
-
# line
|
1311
|
+
when 67 then
|
1312
|
+
# line 207 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1306
1313
|
begin
|
1307
1314
|
te = p+1
|
1308
1315
|
begin
|
1309
1316
|
begin
|
1310
1317
|
stack[top] = cs
|
1311
1318
|
top+= 1
|
1312
|
-
cs =
|
1319
|
+
cs = 138
|
1313
1320
|
_goto_level = _again
|
1314
1321
|
next
|
1315
1322
|
end
|
1316
1323
|
|
1317
1324
|
end
|
1318
1325
|
end
|
1319
|
-
when
|
1320
|
-
# line
|
1326
|
+
when 65 then
|
1327
|
+
# line 237 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1321
1328
|
begin
|
1322
1329
|
te = p+1
|
1323
1330
|
begin
|
@@ -1325,7 +1332,7 @@ te = p+1
|
|
1325
1332
|
end
|
1326
1333
|
end
|
1327
1334
|
when 16 then
|
1328
|
-
# line
|
1335
|
+
# line 245 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1329
1336
|
begin
|
1330
1337
|
te = p+1
|
1331
1338
|
begin
|
@@ -1334,8 +1341,8 @@ te = p+1
|
|
1334
1341
|
emit(:literal, :literal, char, *rest)
|
1335
1342
|
end
|
1336
1343
|
end
|
1337
|
-
when
|
1338
|
-
# line
|
1344
|
+
when 72 then
|
1345
|
+
# line 191 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1339
1346
|
begin
|
1340
1347
|
te = p
|
1341
1348
|
p = p - 1; begin
|
@@ -1348,8 +1355,8 @@ p = p - 1; begin
|
|
1348
1355
|
end
|
1349
1356
|
end
|
1350
1357
|
end
|
1351
|
-
when
|
1352
|
-
# line
|
1358
|
+
when 75 then
|
1359
|
+
# line 211 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1353
1360
|
begin
|
1354
1361
|
te = p
|
1355
1362
|
p = p - 1; begin
|
@@ -1357,15 +1364,15 @@ p = p - 1; begin
|
|
1357
1364
|
begin
|
1358
1365
|
stack[top] = cs
|
1359
1366
|
top+= 1
|
1360
|
-
cs =
|
1367
|
+
cs = 131
|
1361
1368
|
_goto_level = _again
|
1362
1369
|
next
|
1363
1370
|
end
|
1364
1371
|
|
1365
1372
|
end
|
1366
1373
|
end
|
1367
|
-
when
|
1368
|
-
# line
|
1374
|
+
when 70 then
|
1375
|
+
# line 245 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1369
1376
|
begin
|
1370
1377
|
te = p
|
1371
1378
|
p = p - 1; begin
|
@@ -1375,7 +1382,7 @@ p = p - 1; begin
|
|
1375
1382
|
end
|
1376
1383
|
end
|
1377
1384
|
when 17 then
|
1378
|
-
# line
|
1385
|
+
# line 191 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1379
1386
|
begin
|
1380
1387
|
begin p = ((te))-1; end
|
1381
1388
|
begin
|
@@ -1389,7 +1396,7 @@ p = p - 1; begin
|
|
1389
1396
|
end
|
1390
1397
|
end
|
1391
1398
|
when 20 then
|
1392
|
-
# line
|
1399
|
+
# line 211 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1393
1400
|
begin
|
1394
1401
|
begin p = ((te))-1; end
|
1395
1402
|
begin
|
@@ -1397,7 +1404,7 @@ p = p - 1; begin
|
|
1397
1404
|
begin
|
1398
1405
|
stack[top] = cs
|
1399
1406
|
top+= 1
|
1400
|
-
cs =
|
1407
|
+
cs = 131
|
1401
1408
|
_goto_level = _again
|
1402
1409
|
next
|
1403
1410
|
end
|
@@ -1405,7 +1412,7 @@ p = p - 1; begin
|
|
1405
1412
|
end
|
1406
1413
|
end
|
1407
1414
|
when 15 then
|
1408
|
-
# line
|
1415
|
+
# line 245 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1409
1416
|
begin
|
1410
1417
|
begin p = ((te))-1; end
|
1411
1418
|
begin
|
@@ -1414,8 +1421,8 @@ p = p - 1; begin
|
|
1414
1421
|
emit(:literal, :literal, char, *rest)
|
1415
1422
|
end
|
1416
1423
|
end
|
1417
|
-
when
|
1418
|
-
# line
|
1424
|
+
when 77 then
|
1425
|
+
# line 255 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1419
1426
|
begin
|
1420
1427
|
te = p+1
|
1421
1428
|
begin
|
@@ -1429,25 +1436,25 @@ te = p+1
|
|
1429
1436
|
|
1430
1437
|
end
|
1431
1438
|
end
|
1432
|
-
when
|
1433
|
-
# line
|
1439
|
+
when 76 then
|
1440
|
+
# line 260 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1434
1441
|
begin
|
1435
1442
|
te = p+1
|
1436
1443
|
begin
|
1437
1444
|
p = p - 1;
|
1438
|
-
cs =
|
1445
|
+
cs = 131;
|
1439
1446
|
begin
|
1440
1447
|
stack[top] = cs
|
1441
1448
|
top+= 1
|
1442
|
-
cs =
|
1449
|
+
cs = 139
|
1443
1450
|
_goto_level = _again
|
1444
1451
|
next
|
1445
1452
|
end
|
1446
1453
|
|
1447
1454
|
end
|
1448
1455
|
end
|
1449
|
-
when
|
1450
|
-
# line
|
1456
|
+
when 82 then
|
1457
|
+
# line 271 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1451
1458
|
begin
|
1452
1459
|
te = p+1
|
1453
1460
|
begin
|
@@ -1462,8 +1469,8 @@ te = p+1
|
|
1462
1469
|
|
1463
1470
|
end
|
1464
1471
|
end
|
1465
|
-
when
|
1466
|
-
# line
|
1472
|
+
when 88 then
|
1473
|
+
# line 277 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1467
1474
|
begin
|
1468
1475
|
te = p+1
|
1469
1476
|
begin
|
@@ -1477,8 +1484,8 @@ te = p+1
|
|
1477
1484
|
|
1478
1485
|
end
|
1479
1486
|
end
|
1480
|
-
when
|
1481
|
-
# line
|
1487
|
+
when 79 then
|
1488
|
+
# line 282 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1482
1489
|
begin
|
1483
1490
|
te = p+1
|
1484
1491
|
begin
|
@@ -1508,8 +1515,8 @@ te = p+1
|
|
1508
1515
|
|
1509
1516
|
end
|
1510
1517
|
end
|
1511
|
-
when
|
1512
|
-
# line
|
1518
|
+
when 85 then
|
1519
|
+
# line 303 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1513
1520
|
begin
|
1514
1521
|
te = p+1
|
1515
1522
|
begin
|
@@ -1534,8 +1541,8 @@ te = p+1
|
|
1534
1541
|
|
1535
1542
|
end
|
1536
1543
|
end
|
1537
|
-
when
|
1538
|
-
# line
|
1544
|
+
when 29 then
|
1545
|
+
# line 319 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1539
1546
|
begin
|
1540
1547
|
te = p+1
|
1541
1548
|
begin
|
@@ -1554,8 +1561,8 @@ te = p+1
|
|
1554
1561
|
|
1555
1562
|
end
|
1556
1563
|
end
|
1557
|
-
when
|
1558
|
-
# line
|
1564
|
+
when 95 then
|
1565
|
+
# line 329 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1559
1566
|
begin
|
1560
1567
|
te = p+1
|
1561
1568
|
begin
|
@@ -1569,8 +1576,8 @@ te = p+1
|
|
1569
1576
|
|
1570
1577
|
end
|
1571
1578
|
end
|
1572
|
-
when
|
1573
|
-
# line
|
1579
|
+
when 25 then
|
1580
|
+
# line 338 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1574
1581
|
begin
|
1575
1582
|
te = p+1
|
1576
1583
|
begin
|
@@ -1584,8 +1591,8 @@ te = p+1
|
|
1584
1591
|
|
1585
1592
|
end
|
1586
1593
|
end
|
1587
|
-
when
|
1588
|
-
# line
|
1594
|
+
when 27 then
|
1595
|
+
# line 343 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1589
1596
|
begin
|
1590
1597
|
te = p+1
|
1591
1598
|
begin
|
@@ -1599,42 +1606,42 @@ te = p+1
|
|
1599
1606
|
|
1600
1607
|
end
|
1601
1608
|
end
|
1602
|
-
when
|
1603
|
-
# line
|
1609
|
+
when 83 then
|
1610
|
+
# line 348 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1604
1611
|
begin
|
1605
1612
|
te = p+1
|
1606
1613
|
begin
|
1607
1614
|
p = p - 1;
|
1608
|
-
cs = ((in_set? ?
|
1615
|
+
cs = ((in_set? ? 131 : 111));
|
1609
1616
|
begin
|
1610
1617
|
stack[top] = cs
|
1611
1618
|
top+= 1
|
1612
|
-
cs =
|
1619
|
+
cs = 129
|
1613
1620
|
_goto_level = _again
|
1614
1621
|
next
|
1615
1622
|
end
|
1616
1623
|
|
1617
1624
|
end
|
1618
1625
|
end
|
1619
|
-
when
|
1620
|
-
# line
|
1626
|
+
when 84 then
|
1627
|
+
# line 354 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1621
1628
|
begin
|
1622
1629
|
te = p+1
|
1623
1630
|
begin
|
1624
1631
|
p = p - 1;
|
1625
|
-
cs = ((in_set? ?
|
1632
|
+
cs = ((in_set? ? 131 : 111));
|
1626
1633
|
begin
|
1627
1634
|
stack[top] = cs
|
1628
1635
|
top+= 1
|
1629
|
-
cs =
|
1636
|
+
cs = 130
|
1630
1637
|
_goto_level = _again
|
1631
1638
|
next
|
1632
1639
|
end
|
1633
1640
|
|
1634
1641
|
end
|
1635
1642
|
end
|
1636
|
-
when
|
1637
|
-
# line
|
1643
|
+
when 78 then
|
1644
|
+
# line 360 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1638
1645
|
begin
|
1639
1646
|
te = p+1
|
1640
1647
|
begin
|
@@ -1648,8 +1655,8 @@ te = p+1
|
|
1648
1655
|
|
1649
1656
|
end
|
1650
1657
|
end
|
1651
|
-
when
|
1652
|
-
# line
|
1658
|
+
when 87 then
|
1659
|
+
# line 277 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1653
1660
|
begin
|
1654
1661
|
te = p
|
1655
1662
|
p = p - 1; begin
|
@@ -1663,8 +1670,8 @@ p = p - 1; begin
|
|
1663
1670
|
|
1664
1671
|
end
|
1665
1672
|
end
|
1666
|
-
when
|
1667
|
-
# line
|
1673
|
+
when 94 then
|
1674
|
+
# line 329 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1668
1675
|
begin
|
1669
1676
|
te = p
|
1670
1677
|
p = p - 1; begin
|
@@ -1678,8 +1685,8 @@ p = p - 1; begin
|
|
1678
1685
|
|
1679
1686
|
end
|
1680
1687
|
end
|
1681
|
-
when
|
1682
|
-
# line
|
1688
|
+
when 90 then
|
1689
|
+
# line 338 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1683
1690
|
begin
|
1684
1691
|
te = p
|
1685
1692
|
p = p - 1; begin
|
@@ -1693,8 +1700,8 @@ p = p - 1; begin
|
|
1693
1700
|
|
1694
1701
|
end
|
1695
1702
|
end
|
1696
|
-
when
|
1697
|
-
# line
|
1703
|
+
when 92 then
|
1704
|
+
# line 343 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1698
1705
|
begin
|
1699
1706
|
te = p
|
1700
1707
|
p = p - 1; begin
|
@@ -1708,7 +1715,7 @@ p = p - 1; begin
|
|
1708
1715
|
|
1709
1716
|
end
|
1710
1717
|
end
|
1711
|
-
when
|
1718
|
+
when 86 then
|
1712
1719
|
# line 1 "NONE"
|
1713
1720
|
begin
|
1714
1721
|
case act
|
@@ -1739,8 +1746,8 @@ p = p - 1; begin
|
|
1739
1746
|
end
|
1740
1747
|
end
|
1741
1748
|
end
|
1742
|
-
when
|
1743
|
-
# line
|
1749
|
+
when 32 then
|
1750
|
+
# line 370 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1744
1751
|
begin
|
1745
1752
|
te = p+1
|
1746
1753
|
begin
|
@@ -1749,8 +1756,8 @@ te = p+1
|
|
1749
1756
|
emit(:conditional, :condition_close, ')', te-1, te)
|
1750
1757
|
end
|
1751
1758
|
end
|
1752
|
-
when
|
1753
|
-
# line
|
1759
|
+
when 96 then
|
1760
|
+
# line 376 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1754
1761
|
begin
|
1755
1762
|
te = p+1
|
1756
1763
|
begin
|
@@ -1758,15 +1765,15 @@ te = p+1
|
|
1758
1765
|
begin
|
1759
1766
|
stack[top] = cs
|
1760
1767
|
top+= 1
|
1761
|
-
cs =
|
1768
|
+
cs = 111
|
1762
1769
|
_goto_level = _again
|
1763
1770
|
next
|
1764
1771
|
end
|
1765
1772
|
|
1766
1773
|
end
|
1767
1774
|
end
|
1768
|
-
when
|
1769
|
-
# line
|
1775
|
+
when 97 then
|
1776
|
+
# line 376 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1770
1777
|
begin
|
1771
1778
|
te = p
|
1772
1779
|
p = p - 1; begin
|
@@ -1774,15 +1781,15 @@ p = p - 1; begin
|
|
1774
1781
|
begin
|
1775
1782
|
stack[top] = cs
|
1776
1783
|
top+= 1
|
1777
|
-
cs =
|
1784
|
+
cs = 111
|
1778
1785
|
_goto_level = _again
|
1779
1786
|
next
|
1780
1787
|
end
|
1781
1788
|
|
1782
1789
|
end
|
1783
1790
|
end
|
1784
|
-
when
|
1785
|
-
# line
|
1791
|
+
when 31 then
|
1792
|
+
# line 376 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1786
1793
|
begin
|
1787
1794
|
begin p = ((te))-1; end
|
1788
1795
|
begin
|
@@ -1790,23 +1797,23 @@ p = p - 1; begin
|
|
1790
1797
|
begin
|
1791
1798
|
stack[top] = cs
|
1792
1799
|
top+= 1
|
1793
|
-
cs =
|
1800
|
+
cs = 111
|
1794
1801
|
_goto_level = _again
|
1795
1802
|
next
|
1796
1803
|
end
|
1797
1804
|
|
1798
1805
|
end
|
1799
1806
|
end
|
1800
|
-
when
|
1801
|
-
# line
|
1807
|
+
when 39 then
|
1808
|
+
# line 389 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1802
1809
|
begin
|
1803
1810
|
te = p+1
|
1804
1811
|
begin
|
1805
1812
|
emit(:meta, :dot, *text(data, ts, te))
|
1806
1813
|
end
|
1807
1814
|
end
|
1808
|
-
when
|
1809
|
-
# line
|
1815
|
+
when 43 then
|
1816
|
+
# line 393 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1810
1817
|
begin
|
1811
1818
|
te = p+1
|
1812
1819
|
begin
|
@@ -1817,32 +1824,32 @@ te = p+1
|
|
1817
1824
|
end
|
1818
1825
|
end
|
1819
1826
|
end
|
1820
|
-
when
|
1821
|
-
# line
|
1827
|
+
when 42 then
|
1828
|
+
# line 403 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1822
1829
|
begin
|
1823
1830
|
te = p+1
|
1824
1831
|
begin
|
1825
1832
|
emit(:anchor, :bol, *text(data, ts, te))
|
1826
1833
|
end
|
1827
1834
|
end
|
1828
|
-
when
|
1829
|
-
# line
|
1835
|
+
when 36 then
|
1836
|
+
# line 407 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1830
1837
|
begin
|
1831
1838
|
te = p+1
|
1832
1839
|
begin
|
1833
1840
|
emit(:anchor, :eol, *text(data, ts, te))
|
1834
1841
|
end
|
1835
1842
|
end
|
1836
|
-
when
|
1837
|
-
# line
|
1843
|
+
when 59 then
|
1844
|
+
# line 411 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1838
1845
|
begin
|
1839
1846
|
te = p+1
|
1840
1847
|
begin
|
1841
1848
|
emit(:keep, :mark, *text(data, ts, te))
|
1842
1849
|
end
|
1843
1850
|
end
|
1844
|
-
when
|
1845
|
-
# line
|
1851
|
+
when 58 then
|
1852
|
+
# line 415 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1846
1853
|
begin
|
1847
1854
|
te = p+1
|
1848
1855
|
begin
|
@@ -1856,8 +1863,16 @@ te = p+1
|
|
1856
1863
|
end
|
1857
1864
|
end
|
1858
1865
|
end
|
1859
|
-
when
|
1860
|
-
# line
|
1866
|
+
when 41 then
|
1867
|
+
# line 426 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1868
|
+
begin
|
1869
|
+
te = p+1
|
1870
|
+
begin
|
1871
|
+
append_literal(data, ts, te)
|
1872
|
+
end
|
1873
|
+
end
|
1874
|
+
when 49 then
|
1875
|
+
# line 441 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1861
1876
|
begin
|
1862
1877
|
te = p+1
|
1863
1878
|
begin
|
@@ -1870,15 +1885,15 @@ te = p+1
|
|
1870
1885
|
begin
|
1871
1886
|
stack[top] = cs
|
1872
1887
|
top+= 1
|
1873
|
-
cs =
|
1888
|
+
cs = 150
|
1874
1889
|
_goto_level = _again
|
1875
1890
|
next
|
1876
1891
|
end
|
1877
1892
|
|
1878
1893
|
end
|
1879
1894
|
end
|
1880
|
-
when
|
1881
|
-
# line
|
1895
|
+
when 50 then
|
1896
|
+
# line 472 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1882
1897
|
begin
|
1883
1898
|
te = p+1
|
1884
1899
|
begin
|
@@ -1890,7 +1905,7 @@ te = p+1
|
|
1890
1905
|
end
|
1891
1906
|
end
|
1892
1907
|
when 9 then
|
1893
|
-
# line
|
1908
|
+
# line 486 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1894
1909
|
begin
|
1895
1910
|
te = p+1
|
1896
1911
|
begin
|
@@ -1903,7 +1918,7 @@ te = p+1
|
|
1903
1918
|
end
|
1904
1919
|
end
|
1905
1920
|
when 8 then
|
1906
|
-
# line
|
1921
|
+
# line 503 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1907
1922
|
begin
|
1908
1923
|
te = p+1
|
1909
1924
|
begin
|
@@ -1925,7 +1940,7 @@ te = p+1
|
|
1925
1940
|
end
|
1926
1941
|
end
|
1927
1942
|
when 11 then
|
1928
|
-
# line
|
1943
|
+
# line 544 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1929
1944
|
begin
|
1930
1945
|
te = p+1
|
1931
1946
|
begin
|
@@ -1990,8 +2005,8 @@ te = p+1
|
|
1990
2005
|
end
|
1991
2006
|
end
|
1992
2007
|
end
|
1993
|
-
when
|
1994
|
-
# line
|
2008
|
+
when 56 then
|
2009
|
+
# line 609 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
1995
2010
|
begin
|
1996
2011
|
te = p+1
|
1997
2012
|
begin
|
@@ -2002,8 +2017,8 @@ te = p+1
|
|
2002
2017
|
end
|
2003
2018
|
end
|
2004
2019
|
end
|
2005
|
-
when
|
2006
|
-
# line
|
2020
|
+
when 52 then
|
2021
|
+
# line 617 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2007
2022
|
begin
|
2008
2023
|
te = p+1
|
2009
2024
|
begin
|
@@ -2014,8 +2029,8 @@ te = p+1
|
|
2014
2029
|
end
|
2015
2030
|
end
|
2016
2031
|
end
|
2017
|
-
when
|
2018
|
-
# line
|
2032
|
+
when 54 then
|
2033
|
+
# line 625 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2019
2034
|
begin
|
2020
2035
|
te = p+1
|
2021
2036
|
begin
|
@@ -2026,8 +2041,8 @@ te = p+1
|
|
2026
2041
|
end
|
2027
2042
|
end
|
2028
2043
|
end
|
2029
|
-
when
|
2030
|
-
# line
|
2044
|
+
when 62 then
|
2045
|
+
# line 633 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2031
2046
|
begin
|
2032
2047
|
te = p+1
|
2033
2048
|
begin
|
@@ -2035,7 +2050,7 @@ te = p+1
|
|
2035
2050
|
end
|
2036
2051
|
end
|
2037
2052
|
when 4 then
|
2038
|
-
# line
|
2053
|
+
# line 648 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2039
2054
|
begin
|
2040
2055
|
te = p+1
|
2041
2056
|
begin
|
@@ -2046,8 +2061,8 @@ te = p+1
|
|
2046
2061
|
end
|
2047
2062
|
end
|
2048
2063
|
end
|
2049
|
-
when
|
2050
|
-
# line
|
2064
|
+
when 48 then
|
2065
|
+
# line 472 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2051
2066
|
begin
|
2052
2067
|
te = p
|
2053
2068
|
p = p - 1; begin
|
@@ -2058,8 +2073,8 @@ p = p - 1; begin
|
|
2058
2073
|
emit_options(text, ts, te)
|
2059
2074
|
end
|
2060
2075
|
end
|
2061
|
-
when
|
2062
|
-
# line
|
2076
|
+
when 46 then
|
2077
|
+
# line 521 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2063
2078
|
begin
|
2064
2079
|
te = p
|
2065
2080
|
p = p - 1; begin
|
@@ -2067,8 +2082,8 @@ p = p - 1; begin
|
|
2067
2082
|
emit(:group, :capture, text, ts, te)
|
2068
2083
|
end
|
2069
2084
|
end
|
2070
|
-
when
|
2071
|
-
# line
|
2085
|
+
when 55 then
|
2086
|
+
# line 609 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2072
2087
|
begin
|
2073
2088
|
te = p
|
2074
2089
|
p = p - 1; begin
|
@@ -2079,8 +2094,8 @@ p = p - 1; begin
|
|
2079
2094
|
end
|
2080
2095
|
end
|
2081
2096
|
end
|
2082
|
-
when
|
2083
|
-
# line
|
2097
|
+
when 51 then
|
2098
|
+
# line 617 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2084
2099
|
begin
|
2085
2100
|
te = p
|
2086
2101
|
p = p - 1; begin
|
@@ -2091,8 +2106,8 @@ p = p - 1; begin
|
|
2091
2106
|
end
|
2092
2107
|
end
|
2093
2108
|
end
|
2094
|
-
when
|
2095
|
-
# line
|
2109
|
+
when 53 then
|
2110
|
+
# line 625 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2096
2111
|
begin
|
2097
2112
|
te = p
|
2098
2113
|
p = p - 1; begin
|
@@ -2103,31 +2118,39 @@ p = p - 1; begin
|
|
2103
2118
|
end
|
2104
2119
|
end
|
2105
2120
|
end
|
2106
|
-
when
|
2107
|
-
# line
|
2121
|
+
when 61 then
|
2122
|
+
# line 633 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2108
2123
|
begin
|
2109
2124
|
te = p
|
2110
2125
|
p = p - 1; begin
|
2111
2126
|
emit(:quantifier, :interval, *text(data, ts, te))
|
2112
2127
|
end
|
2113
2128
|
end
|
2114
|
-
when
|
2115
|
-
# line
|
2129
|
+
when 60 then
|
2130
|
+
# line 638 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2131
|
+
begin
|
2132
|
+
te = p
|
2133
|
+
p = p - 1; begin
|
2134
|
+
append_literal(data, ts, te)
|
2135
|
+
end
|
2136
|
+
end
|
2137
|
+
when 57 then
|
2138
|
+
# line 644 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2116
2139
|
begin
|
2117
2140
|
te = p
|
2118
2141
|
p = p - 1; begin
|
2119
2142
|
begin
|
2120
2143
|
stack[top] = cs
|
2121
2144
|
top+= 1
|
2122
|
-
cs =
|
2145
|
+
cs = 139
|
2123
2146
|
_goto_level = _again
|
2124
2147
|
next
|
2125
2148
|
end
|
2126
2149
|
|
2127
2150
|
end
|
2128
2151
|
end
|
2129
|
-
when
|
2130
|
-
# line
|
2152
|
+
when 45 then
|
2153
|
+
# line 656 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2131
2154
|
begin
|
2132
2155
|
te = p
|
2133
2156
|
p = p - 1; begin
|
@@ -2138,8 +2161,8 @@ p = p - 1; begin
|
|
2138
2161
|
end
|
2139
2162
|
end
|
2140
2163
|
end
|
2141
|
-
when
|
2142
|
-
# line
|
2164
|
+
when 44 then
|
2165
|
+
# line 671 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2143
2166
|
begin
|
2144
2167
|
te = p
|
2145
2168
|
p = p - 1; begin
|
@@ -2147,7 +2170,7 @@ p = p - 1; begin
|
|
2147
2170
|
end
|
2148
2171
|
end
|
2149
2172
|
when 5 then
|
2150
|
-
# line
|
2173
|
+
# line 472 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2151
2174
|
begin
|
2152
2175
|
begin p = ((te))-1; end
|
2153
2176
|
begin
|
@@ -2156,17 +2179,25 @@ p = p - 1; begin
|
|
2156
2179
|
raise InvalidGroupOption.new($1 || "-#{$2}", text)
|
2157
2180
|
end
|
2158
2181
|
emit_options(text, ts, te)
|
2182
|
+
end
|
2183
|
+
end
|
2184
|
+
when 12 then
|
2185
|
+
# line 638 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2186
|
+
begin
|
2187
|
+
begin p = ((te))-1; end
|
2188
|
+
begin
|
2189
|
+
append_literal(data, ts, te)
|
2159
2190
|
end
|
2160
2191
|
end
|
2161
2192
|
when 10 then
|
2162
|
-
# line
|
2193
|
+
# line 644 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2163
2194
|
begin
|
2164
2195
|
begin p = ((te))-1; end
|
2165
2196
|
begin
|
2166
2197
|
begin
|
2167
2198
|
stack[top] = cs
|
2168
2199
|
top+= 1
|
2169
|
-
cs =
|
2200
|
+
cs = 139
|
2170
2201
|
_goto_level = _again
|
2171
2202
|
next
|
2172
2203
|
end
|
@@ -2174,7 +2205,7 @@ p = p - 1; begin
|
|
2174
2205
|
end
|
2175
2206
|
end
|
2176
2207
|
when 3 then
|
2177
|
-
# line
|
2208
|
+
# line 671 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2178
2209
|
begin
|
2179
2210
|
begin p = ((te))-1; end
|
2180
2211
|
begin
|
@@ -2192,21 +2223,21 @@ p = p - 1; begin
|
|
2192
2223
|
next
|
2193
2224
|
end
|
2194
2225
|
end
|
2195
|
-
when
|
2226
|
+
when 56 then
|
2196
2227
|
begin begin p = ((te))-1; end
|
2197
2228
|
|
2198
2229
|
append_literal(data, ts, te)
|
2199
2230
|
end
|
2200
2231
|
end
|
2201
2232
|
end
|
2202
|
-
when
|
2203
|
-
# line
|
2233
|
+
when 74 then
|
2234
|
+
# line 137 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2204
2235
|
begin
|
2205
2236
|
|
2206
2237
|
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
2207
2238
|
raise PrematureEndError.new( text )
|
2208
2239
|
end
|
2209
|
-
# line
|
2240
|
+
# line 211 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2210
2241
|
begin
|
2211
2242
|
te = p
|
2212
2243
|
p = p - 1; begin
|
@@ -2214,7 +2245,7 @@ p = p - 1; begin
|
|
2214
2245
|
begin
|
2215
2246
|
stack[top] = cs
|
2216
2247
|
top+= 1
|
2217
|
-
cs =
|
2248
|
+
cs = 131
|
2218
2249
|
_goto_level = _again
|
2219
2250
|
next
|
2220
2251
|
end
|
@@ -2222,13 +2253,13 @@ p = p - 1; begin
|
|
2222
2253
|
end
|
2223
2254
|
end
|
2224
2255
|
when 19 then
|
2225
|
-
# line
|
2256
|
+
# line 137 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2226
2257
|
begin
|
2227
2258
|
|
2228
2259
|
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
2229
2260
|
raise PrematureEndError.new( text )
|
2230
2261
|
end
|
2231
|
-
# line
|
2262
|
+
# line 211 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2232
2263
|
begin
|
2233
2264
|
begin p = ((te))-1; end
|
2234
2265
|
begin
|
@@ -2236,21 +2267,21 @@ p = p - 1; begin
|
|
2236
2267
|
begin
|
2237
2268
|
stack[top] = cs
|
2238
2269
|
top+= 1
|
2239
|
-
cs =
|
2270
|
+
cs = 131
|
2240
2271
|
_goto_level = _again
|
2241
2272
|
next
|
2242
2273
|
end
|
2243
2274
|
|
2244
2275
|
end
|
2245
2276
|
end
|
2246
|
-
when
|
2247
|
-
# line
|
2277
|
+
when 93 then
|
2278
|
+
# line 137 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2248
2279
|
begin
|
2249
2280
|
|
2250
2281
|
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
2251
2282
|
raise PrematureEndError.new( text )
|
2252
2283
|
end
|
2253
|
-
# line
|
2284
|
+
# line 329 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2254
2285
|
begin
|
2255
2286
|
te = p
|
2256
2287
|
p = p - 1; begin
|
@@ -2264,14 +2295,14 @@ p = p - 1; begin
|
|
2264
2295
|
|
2265
2296
|
end
|
2266
2297
|
end
|
2267
|
-
when
|
2268
|
-
# line
|
2298
|
+
when 89 then
|
2299
|
+
# line 137 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2269
2300
|
begin
|
2270
2301
|
|
2271
2302
|
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
2272
2303
|
raise PrematureEndError.new( text )
|
2273
2304
|
end
|
2274
|
-
# line
|
2305
|
+
# line 338 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2275
2306
|
begin
|
2276
2307
|
te = p
|
2277
2308
|
p = p - 1; begin
|
@@ -2285,14 +2316,14 @@ p = p - 1; begin
|
|
2285
2316
|
|
2286
2317
|
end
|
2287
2318
|
end
|
2288
|
-
when
|
2289
|
-
# line
|
2319
|
+
when 91 then
|
2320
|
+
# line 137 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2290
2321
|
begin
|
2291
2322
|
|
2292
2323
|
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
2293
2324
|
raise PrematureEndError.new( text )
|
2294
2325
|
end
|
2295
|
-
# line
|
2326
|
+
# line 343 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2296
2327
|
begin
|
2297
2328
|
te = p
|
2298
2329
|
p = p - 1; begin
|
@@ -2306,14 +2337,14 @@ p = p - 1; begin
|
|
2306
2337
|
|
2307
2338
|
end
|
2308
2339
|
end
|
2309
|
-
when
|
2310
|
-
# line
|
2340
|
+
when 26 then
|
2341
|
+
# line 137 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2311
2342
|
begin
|
2312
2343
|
|
2313
2344
|
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
2314
2345
|
raise PrematureEndError.new( text )
|
2315
2346
|
end
|
2316
|
-
# line
|
2347
|
+
# line 338 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2317
2348
|
begin
|
2318
2349
|
begin p = ((te))-1; end
|
2319
2350
|
begin
|
@@ -2327,14 +2358,14 @@ p = p - 1; begin
|
|
2327
2358
|
|
2328
2359
|
end
|
2329
2360
|
end
|
2330
|
-
when
|
2331
|
-
# line
|
2361
|
+
when 28 then
|
2362
|
+
# line 137 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2332
2363
|
begin
|
2333
2364
|
|
2334
2365
|
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
2335
2366
|
raise PrematureEndError.new( text )
|
2336
2367
|
end
|
2337
|
-
# line
|
2368
|
+
# line 343 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2338
2369
|
begin
|
2339
2370
|
begin p = ((te))-1; end
|
2340
2371
|
begin
|
@@ -2348,14 +2379,14 @@ p = p - 1; begin
|
|
2348
2379
|
|
2349
2380
|
end
|
2350
2381
|
end
|
2351
|
-
when
|
2352
|
-
# line
|
2382
|
+
when 30 then
|
2383
|
+
# line 143 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2353
2384
|
begin
|
2354
2385
|
|
2355
2386
|
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
2356
2387
|
validation_error(:sequence, 'sequence', text)
|
2357
2388
|
end
|
2358
|
-
# line
|
2389
|
+
# line 334 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2359
2390
|
begin
|
2360
2391
|
te = p+1
|
2361
2392
|
begin
|
@@ -2369,21 +2400,21 @@ te = p+1
|
|
2369
2400
|
end
|
2370
2401
|
end
|
2371
2402
|
when 7 then
|
2372
|
-
# line
|
2403
|
+
# line 150 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2373
2404
|
begin
|
2374
2405
|
self.group_depth = group_depth - 1 end
|
2375
|
-
# line
|
2406
|
+
# line 457 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2376
2407
|
begin
|
2377
2408
|
te = p+1
|
2378
2409
|
begin
|
2379
2410
|
emit(:group, :comment, *text(data, ts, te))
|
2380
2411
|
end
|
2381
2412
|
end
|
2382
|
-
when
|
2383
|
-
# line
|
2413
|
+
when 38 then
|
2414
|
+
# line 150 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2384
2415
|
begin
|
2385
2416
|
self.group_depth = group_depth - 1 end
|
2386
|
-
# line
|
2417
|
+
# line 526 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2387
2418
|
begin
|
2388
2419
|
te = p+1
|
2389
2420
|
begin
|
@@ -2401,11 +2432,11 @@ te = p+1
|
|
2401
2432
|
end
|
2402
2433
|
end
|
2403
2434
|
end
|
2404
|
-
when
|
2405
|
-
# line
|
2435
|
+
when 40 then
|
2436
|
+
# line 151 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2406
2437
|
begin
|
2407
2438
|
self.set_depth = set_depth + 1 end
|
2408
|
-
# line
|
2439
|
+
# line 432 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2409
2440
|
begin
|
2410
2441
|
te = p+1
|
2411
2442
|
begin
|
@@ -2413,18 +2444,18 @@ te = p+1
|
|
2413
2444
|
begin
|
2414
2445
|
stack[top] = cs
|
2415
2446
|
top+= 1
|
2416
|
-
cs =
|
2447
|
+
cs = 131
|
2417
2448
|
_goto_level = _again
|
2418
2449
|
next
|
2419
2450
|
end
|
2420
2451
|
|
2421
2452
|
end
|
2422
2453
|
end
|
2423
|
-
when
|
2424
|
-
# line
|
2454
|
+
when 68 then
|
2455
|
+
# line 152 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2425
2456
|
begin
|
2426
2457
|
self.set_depth = set_depth - 1 end
|
2427
|
-
# line
|
2458
|
+
# line 158 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2428
2459
|
begin
|
2429
2460
|
te = p+1
|
2430
2461
|
begin
|
@@ -2439,7 +2470,7 @@ te = p+1
|
|
2439
2470
|
|
2440
2471
|
else
|
2441
2472
|
begin
|
2442
|
-
cs =
|
2473
|
+
cs = 111
|
2443
2474
|
_goto_level = _again
|
2444
2475
|
next
|
2445
2476
|
end
|
@@ -2447,11 +2478,11 @@ te = p+1
|
|
2447
2478
|
end
|
2448
2479
|
end
|
2449
2480
|
end
|
2450
|
-
when
|
2451
|
-
# line
|
2481
|
+
when 73 then
|
2482
|
+
# line 152 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2452
2483
|
begin
|
2453
2484
|
self.set_depth = set_depth - 1 end
|
2454
|
-
# line
|
2485
|
+
# line 167 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2455
2486
|
begin
|
2456
2487
|
te = p+1
|
2457
2488
|
begin # special case, emits two tokens
|
@@ -2467,7 +2498,7 @@ te = p+1
|
|
2467
2498
|
|
2468
2499
|
else
|
2469
2500
|
begin
|
2470
|
-
cs =
|
2501
|
+
cs = 111
|
2471
2502
|
_goto_level = _again
|
2472
2503
|
next
|
2473
2504
|
end
|
@@ -2476,10 +2507,10 @@ te = p+1
|
|
2476
2507
|
end
|
2477
2508
|
end
|
2478
2509
|
when 22 then
|
2479
|
-
# line
|
2510
|
+
# line 152 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2480
2511
|
begin
|
2481
2512
|
self.set_depth = set_depth - 1 end
|
2482
|
-
# line
|
2513
|
+
# line 216 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2483
2514
|
begin
|
2484
2515
|
te = p+1
|
2485
2516
|
begin
|
@@ -2496,10 +2527,10 @@ te = p+1
|
|
2496
2527
|
end
|
2497
2528
|
end
|
2498
2529
|
when 21 then
|
2499
|
-
# line
|
2530
|
+
# line 152 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2500
2531
|
begin
|
2501
2532
|
self.set_depth = set_depth - 1 end
|
2502
|
-
# line
|
2533
|
+
# line 229 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2503
2534
|
begin
|
2504
2535
|
te = p+1
|
2505
2536
|
begin
|
@@ -2507,38 +2538,38 @@ te = p+1
|
|
2507
2538
|
end
|
2508
2539
|
end
|
2509
2540
|
when 23 then
|
2510
|
-
# line
|
2541
|
+
# line 152 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2511
2542
|
begin
|
2512
2543
|
self.set_depth = set_depth - 1 end
|
2513
|
-
# line
|
2544
|
+
# line 233 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2514
2545
|
begin
|
2515
2546
|
te = p+1
|
2516
2547
|
begin
|
2517
2548
|
emit(:set, :equivalent, *text(data, ts, te))
|
2518
2549
|
end
|
2519
2550
|
end
|
2520
|
-
when
|
2551
|
+
when 66 then
|
2521
2552
|
# line 1 "NONE"
|
2522
2553
|
begin
|
2523
2554
|
te = p+1
|
2524
2555
|
end
|
2525
|
-
# line
|
2556
|
+
# line 151 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2526
2557
|
begin
|
2527
2558
|
self.set_depth = set_depth + 1 end
|
2528
|
-
when
|
2559
|
+
when 81 then
|
2529
2560
|
# line 1 "NONE"
|
2530
2561
|
begin
|
2531
2562
|
te = p+1
|
2532
2563
|
end
|
2533
|
-
# line
|
2564
|
+
# line 271 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2534
2565
|
begin
|
2535
2566
|
act = 18; end
|
2536
|
-
when
|
2567
|
+
when 80 then
|
2537
2568
|
# line 1 "NONE"
|
2538
2569
|
begin
|
2539
2570
|
te = p+1
|
2540
2571
|
end
|
2541
|
-
# line
|
2572
|
+
# line 277 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2542
2573
|
begin
|
2543
2574
|
act = 19; end
|
2544
2575
|
when 2 then
|
@@ -2546,31 +2577,31 @@ act = 19; end
|
|
2546
2577
|
begin
|
2547
2578
|
te = p+1
|
2548
2579
|
end
|
2549
|
-
# line
|
2580
|
+
# line 671 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2550
2581
|
begin
|
2551
|
-
act =
|
2552
|
-
when
|
2582
|
+
act = 56; end
|
2583
|
+
when 47 then
|
2553
2584
|
# line 1 "NONE"
|
2554
2585
|
begin
|
2555
2586
|
te = p+1
|
2556
2587
|
end
|
2557
|
-
# line
|
2588
|
+
# line 150 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2558
2589
|
begin
|
2559
2590
|
self.group_depth = group_depth - 1 end
|
2560
|
-
# line
|
2591
|
+
# line 149 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2561
2592
|
begin
|
2562
2593
|
self.group_depth = group_depth + 1 end
|
2563
|
-
# line
|
2594
|
+
# line 2594 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner.rb"
|
2564
2595
|
end
|
2565
2596
|
end
|
2566
2597
|
end
|
2567
2598
|
if _goto_level <= _again
|
2568
2599
|
case _re_scanner_to_state_actions[cs]
|
2569
|
-
when
|
2600
|
+
when 63 then
|
2570
2601
|
# line 1 "NONE"
|
2571
2602
|
begin
|
2572
2603
|
ts = nil; end
|
2573
|
-
when
|
2604
|
+
when 33 then
|
2574
2605
|
# line 1 "NONE"
|
2575
2606
|
begin
|
2576
2607
|
ts = nil; end
|
@@ -2578,7 +2609,7 @@ ts = nil; end
|
|
2578
2609
|
begin
|
2579
2610
|
act = 0
|
2580
2611
|
end
|
2581
|
-
# line
|
2612
|
+
# line 2612 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner.rb"
|
2582
2613
|
end
|
2583
2614
|
|
2584
2615
|
if cs == 0
|
@@ -2600,19 +2631,19 @@ act = 0
|
|
2600
2631
|
end
|
2601
2632
|
case _re_scanner_eof_actions[cs]
|
2602
2633
|
when 13 then
|
2603
|
-
# line 8 "/Users/
|
2634
|
+
# line 8 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/property.rl"
|
2604
2635
|
begin
|
2605
2636
|
|
2606
2637
|
raise PrematureEndError.new('unicode property')
|
2607
2638
|
end
|
2608
|
-
when
|
2609
|
-
# line
|
2639
|
+
when 24 then
|
2640
|
+
# line 137 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2610
2641
|
begin
|
2611
2642
|
|
2612
2643
|
text = ts ? copy(data, ts-1..-1) : data.pack('c*')
|
2613
2644
|
raise PrematureEndError.new( text )
|
2614
2645
|
end
|
2615
|
-
# line
|
2646
|
+
# line 2646 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner.rb"
|
2616
2647
|
end
|
2617
2648
|
end
|
2618
2649
|
|
@@ -2623,7 +2654,7 @@ act = 0
|
|
2623
2654
|
end
|
2624
2655
|
end
|
2625
2656
|
|
2626
|
-
# line
|
2657
|
+
# line 770 "/Users/ammar/src/code/ruby/projects/regexp_parser/lib/regexp_parser/scanner/scanner.rl"
|
2627
2658
|
|
2628
2659
|
# to avoid "warning: assigned but unused variable - testEof"
|
2629
2660
|
testEof = testEof
|