sourcify 0.5.0 → 0.6.0.rc1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +1 -0
- data/HISTORY.txt +5 -0
- data/README.rdoc +86 -3
- data/Rakefile +47 -15
- data/lib/sourcify.rb +13 -0
- data/lib/sourcify/common/parser/converter.rb +29 -0
- data/lib/sourcify/common/parser/raw_scanner/comment.rb +23 -0
- data/lib/sourcify/common/parser/raw_scanner/counter.rb +43 -0
- data/lib/sourcify/common/parser/raw_scanner/dstring.rb +60 -0
- data/lib/sourcify/common/parser/raw_scanner/extensions.rb +121 -0
- data/lib/sourcify/common/parser/raw_scanner/heredoc.rb +26 -0
- data/lib/sourcify/common/parser/source_code.rb +33 -0
- data/lib/sourcify/common/ragel/common.rl +5 -0
- data/lib/sourcify/common/ragel/expressions.rl +38 -0
- data/lib/sourcify/{proc/scanner.rl → common/ragel/machines.rl} +10 -178
- data/lib/sourcify/errors.rb +4 -0
- data/lib/sourcify/method.rb +134 -0
- data/lib/sourcify/method/methods.rb +3 -0
- data/lib/sourcify/method/methods/to_raw_source.rb +30 -0
- data/lib/sourcify/method/methods/to_sexp.rb +30 -0
- data/lib/sourcify/method/methods/to_source.rb +30 -0
- data/lib/sourcify/method/parser.rb +104 -0
- data/lib/sourcify/method/parser/converter.rb +8 -0
- data/lib/sourcify/method/parser/raw_scanner.rb +2494 -0
- data/lib/sourcify/method/parser/raw_scanner.rl +144 -0
- data/lib/sourcify/method/parser/raw_scanner_extensions.rb +64 -0
- data/lib/sourcify/method/parser/scanner.rb +48 -0
- data/lib/sourcify/method/parser/source_code.rb +8 -0
- data/lib/sourcify/proc.rb +0 -2
- data/lib/sourcify/proc/parser.rb +2 -5
- data/lib/sourcify/proc/parser/converter.rb +2 -23
- data/lib/sourcify/proc/{scanner.rb → parser/raw_scanner.rb} +808 -806
- data/lib/sourcify/proc/parser/raw_scanner.rl +149 -0
- data/lib/sourcify/proc/parser/raw_scanner_extensions.rb +72 -0
- data/lib/sourcify/proc/parser/{code_scanner.rb → scanner.rb} +9 -5
- data/lib/sourcify/proc/parser/source_code.rb +2 -27
- data/lib/sourcify/version.rb +1 -1
- data/spec/method/others_from_def_end_block_spec.rb +49 -0
- data/spec/method/others_from_define_method_spec.rb +62 -0
- data/spec/method/raw_scanner/block_comment_spec.rb +8 -0
- data/spec/method/raw_scanner/double_colons_spec.rb +8 -0
- data/spec/method/raw_scanner/double_quote_str_w_interpolation_spec.rb +8 -0
- data/spec/method/raw_scanner/double_quote_str_wo_interpolation_spec.rb +8 -0
- data/spec/method/raw_scanner/heredoc_w_indent_spec.rb +8 -0
- data/spec/method/raw_scanner/heredoc_wo_indent_spec.rb +8 -0
- data/spec/method/raw_scanner/kw_block_start_alias1_spec.rb +20 -0
- data/spec/method/raw_scanner/kw_block_start_alias2_spec.rb +20 -0
- data/spec/method/raw_scanner/per_line_comment_spec.rb +8 -0
- data/spec/method/raw_scanner/single_quote_str_spec.rb +8 -0
- data/spec/method/raw_scanner/slash_operator_spec.rb +8 -0
- data/spec/method/raw_scanner/spec_helper.rb +80 -0
- data/spec/method/spec_helper.rb +1 -0
- data/spec/method/to_raw_source_spec.rb +31 -0
- data/spec/method/to_raw_source_w_specified_strip_enclosure_spec.rb +148 -0
- data/spec/method/to_sexp_from_def_end_block_w_variables_spec.rb +46 -0
- data/spec/method/to_sexp_from_def_end_block_within_irb_spec.rb +38 -0
- data/spec/method/to_sexp_from_define_method_w_multi_blocks_and_specified_attached_to_spec.rb +56 -0
- data/spec/method/to_sexp_from_define_method_w_variables_spec.rb +52 -0
- data/spec/method/to_sexp_from_define_method_within_irb_spec.rb +42 -0
- data/spec/method/to_sexp_w_specified_strip_enclosure_spec.rb +74 -0
- data/spec/method/to_source_from_def_end_block_w_19_extras_spec.rb +23 -0
- data/spec/method/to_source_from_def_end_block_w_nested_begin_spec.rb +35 -0
- data/spec/method/to_source_from_def_end_block_w_nested_case_spec.rb +35 -0
- data/spec/method/to_source_from_def_end_block_w_nested_class_spec.rb +51 -0
- data/spec/method/to_source_from_def_end_block_w_nested_do_end_block_spec.rb +33 -0
- data/spec/method/to_source_from_def_end_block_w_nested_for_spec.rb +126 -0
- data/spec/method/to_source_from_def_end_block_w_nested_if_spec.rb +82 -0
- data/spec/method/to_source_from_def_end_block_w_nested_literal_keyword_spec.rb +141 -0
- data/spec/method/to_source_from_def_end_block_w_nested_method_spec.rb +33 -0
- data/spec/method/to_source_from_def_end_block_w_nested_module_spec.rb +59 -0
- data/spec/method/to_source_from_def_end_block_w_nested_unless_spec.rb +82 -0
- data/spec/method/to_source_from_def_end_block_w_nested_until_spec.rb +179 -0
- data/spec/method/to_source_from_def_end_block_w_nested_while_spec.rb +179 -0
- data/spec/method/to_source_from_def_end_block_w_singleton_method_spec.rb +19 -0
- data/spec/method/to_source_from_def_end_block_within_irb_spec.rb +30 -0
- data/spec/method/to_source_from_def_end_w_multi_blocks_and_many_matches_spec.rb +30 -0
- data/spec/method/to_source_from_def_end_w_multi_blocks_and_single_match_spec.rb +36 -0
- data/spec/method/to_source_from_define_method_w_braced_block_spec.rb +113 -0
- data/spec/method/to_source_from_define_method_w_do_end_block_spec.rb +145 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_many_matches_spec.rb +56 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_single_match_spec.rb +73 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_attached_to_and_many_matches_spec.rb +36 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_attached_to_and_no_match_spec.rb +36 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_attached_to_and_single_match_spec.rb +28 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_attached_to_spec.rb +103 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_body_matcher_and_many_matches_spec.rb +36 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_body_matcher_and_no_match_spec.rb +36 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_body_matcher_and_single_match_spec.rb +28 -0
- data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_ignore_nested_spec.rb +36 -0
- data/spec/method/to_source_from_define_method_within_irb_spec.rb +32 -0
- data/spec/method/to_source_magic_file_var_spec.rb +176 -0
- data/spec/method/to_source_magic_line_var_spec.rb +298 -0
- data/spec/method/to_source_w_specified_strip_enclosure_spec.rb +39 -0
- data/spec/no_method/unsupported_platform_spec.rb +26 -0
- data/spec/proc/raw_scanner/block_comment_spec.rb +8 -0
- data/spec/proc/raw_scanner/double_colons_spec.rb +8 -0
- data/spec/proc/raw_scanner/double_quote_str_w_interpolation_spec.rb +8 -0
- data/spec/proc/raw_scanner/double_quote_str_wo_interpolation_spec.rb +8 -0
- data/spec/proc/raw_scanner/heredoc_w_indent_spec.rb +8 -0
- data/spec/proc/raw_scanner/heredoc_wo_indent_spec.rb +8 -0
- data/spec/proc/raw_scanner/kw_block_start_alias1_spec.rb +20 -0
- data/spec/proc/raw_scanner/kw_block_start_alias2_spec.rb +20 -0
- data/spec/proc/raw_scanner/per_line_comment_spec.rb +8 -0
- data/spec/proc/raw_scanner/single_quote_str_spec.rb +8 -0
- data/spec/proc/raw_scanner/slash_operator_spec.rb +8 -0
- data/spec/proc/raw_scanner/spec_helper.rb +63 -0
- data/spec/{proc_scanner/block_comment_spec.rb → raw_scanner/block_comment_shared_spec.rb} +1 -5
- data/spec/{proc_scanner/double_colons_spec.rb → raw_scanner/double_colons_shared_spec.rb} +1 -5
- data/spec/{proc_scanner/double_quote_str_w_interpolation_spec.rb → raw_scanner/double_quote_str_w_interpolation_shared_spec.rb} +1 -5
- data/spec/{proc_scanner/double_quote_str_wo_interpolation_spec.rb → raw_scanner/double_quote_str_wo_interpolation_shared_spec.rb} +1 -5
- data/spec/raw_scanner/heredoc_w_indent_shared_spec.rb +69 -0
- data/spec/raw_scanner/heredoc_wo_indent_shared_spec.rb +70 -0
- data/spec/{proc_scanner/kw_do_alias1_spec.rb → raw_scanner/kw_block_start_alias1_shared_spec.rb} +10 -26
- data/spec/{proc_scanner/kw_do_alias2_spec.rb → raw_scanner/kw_block_start_alias2_shared_spec.rb} +10 -25
- data/spec/{proc_scanner/per_line_comment_spec.rb → raw_scanner/per_line_comment_shared_spec.rb} +1 -5
- data/spec/raw_scanner/shared_specs.rb +3 -0
- data/spec/{proc_scanner/single_quote_str_spec.rb → raw_scanner/single_quote_str_shared_spec.rb} +1 -5
- data/spec/{proc_scanner/slash_operator_spec.rb → raw_scanner/slash_operator_shared_spec.rb} +1 -5
- data/spec/run_spec.sh +7 -1
- data/spec/spec_helper.rb +8 -25
- metadata +204 -47
- data/.rvmrc +0 -1
- data/VERSION +0 -1
- data/lib/sourcify/proc/scanner/comment.rb +0 -21
- data/lib/sourcify/proc/scanner/counter.rb +0 -44
- data/lib/sourcify/proc/scanner/dstring.rb +0 -59
- data/lib/sourcify/proc/scanner/extensions.rb +0 -171
- data/lib/sourcify/proc/scanner/heredoc.rb +0 -24
- data/spec/proc_scanner/heredoc_spec.rb +0 -144
- data/spec/proc_scanner/spec_helper.rb +0 -33
@@ -0,0 +1,144 @@
|
|
1
|
+
Sourcify.require_rb('method', 'parser', 'raw_scanner_extensions')
|
2
|
+
|
3
|
+
module Sourcify
|
4
|
+
module Method
|
5
|
+
class Parser
|
6
|
+
module RawScanner #:nodoc:all
|
7
|
+
|
8
|
+
%%{
|
9
|
+
|
10
|
+
machine scanner;
|
11
|
+
include common 'common.rl';
|
12
|
+
|
13
|
+
## MACHINE >> New statement
|
14
|
+
new_statement := |*
|
15
|
+
|
16
|
+
(kw_for | kw_while | kw_until) . ^vchar => {
|
17
|
+
push(:kw_do_alias2, ts, te)
|
18
|
+
increment_counter(0..1)
|
19
|
+
fgoto main;
|
20
|
+
};
|
21
|
+
|
22
|
+
(
|
23
|
+
((kw_class | kw_module | kw_do | kw_begin | kw_case | kw_if | kw_unless) . ^vchar) |
|
24
|
+
(kw_class . ospaces . '<<' . ospaces . ^(newline | smcolon)+)
|
25
|
+
) => {
|
26
|
+
push(:kw_do_alias1, ts, te)
|
27
|
+
increment_counter(1)
|
28
|
+
fgoto main;
|
29
|
+
};
|
30
|
+
|
31
|
+
ospaces => { push(:space, ts, te) };
|
32
|
+
any => { fhold; fgoto main; };
|
33
|
+
|
34
|
+
*|;
|
35
|
+
|
36
|
+
|
37
|
+
## MACHINE >> Main
|
38
|
+
main := |*
|
39
|
+
|
40
|
+
## == Start/end of def..end block
|
41
|
+
|
42
|
+
kw_def => {
|
43
|
+
push(:kw_def, ts, te)
|
44
|
+
increment_counter(1)
|
45
|
+
fgoto new_statement;
|
46
|
+
};
|
47
|
+
|
48
|
+
kw_end => {
|
49
|
+
push(:kw_end, ts, te)
|
50
|
+
decrement_counter()
|
51
|
+
};
|
52
|
+
|
53
|
+
## == Start/end of {...} block
|
54
|
+
|
55
|
+
lbrace => {
|
56
|
+
push(:lbrace, ts, te)
|
57
|
+
};
|
58
|
+
|
59
|
+
rbrace => {
|
60
|
+
push(:rbrace, ts, te)
|
61
|
+
};
|
62
|
+
|
63
|
+
assoc => {
|
64
|
+
push(:assoc, ts, te)
|
65
|
+
};
|
66
|
+
|
67
|
+
label => {
|
68
|
+
push_label(ts, te)
|
69
|
+
};
|
70
|
+
|
71
|
+
## == New statement
|
72
|
+
|
73
|
+
newline => {
|
74
|
+
push(:newline, ts, te)
|
75
|
+
increment_lineno
|
76
|
+
fgoto new_statement;
|
77
|
+
};
|
78
|
+
|
79
|
+
smcolon | lparen | assgn | kw_then | comma => {
|
80
|
+
push(:newline_alias, ts, te)
|
81
|
+
fgoto new_statement;
|
82
|
+
};
|
83
|
+
|
84
|
+
## == Comment
|
85
|
+
|
86
|
+
'#' => {
|
87
|
+
fgoto per_line_comment;
|
88
|
+
};
|
89
|
+
|
90
|
+
newline . '=begin' . ospaces . (ospaces . ^newline+)* . newline => {
|
91
|
+
push_comment(ts, te)
|
92
|
+
increment_lineno
|
93
|
+
fgoto block_comment;
|
94
|
+
};
|
95
|
+
|
96
|
+
## == Strings
|
97
|
+
|
98
|
+
('<<' | '<<-') . ["']? . (const | var) . ["']? . newline => {
|
99
|
+
push_heredoc(ts, te)
|
100
|
+
increment_lineno
|
101
|
+
fgoto heredoc;
|
102
|
+
};
|
103
|
+
|
104
|
+
('"' | "'" | '`' | '%') => {
|
105
|
+
fhold; fgoto string;
|
106
|
+
};
|
107
|
+
|
108
|
+
'/' => {
|
109
|
+
if preceded_with?(:char, :digit, :var, :const, :symbol, :dstring, :sstring, ')', ']', '}')
|
110
|
+
push(:op, ts, te)
|
111
|
+
else
|
112
|
+
fhold; fgoto string;
|
113
|
+
end
|
114
|
+
};
|
115
|
+
|
116
|
+
## == Misc
|
117
|
+
|
118
|
+
var => { push(:var, ts, te) };
|
119
|
+
bslash => { push(:bslash, ts, te) };
|
120
|
+
const => { push(:const, ts, te) };
|
121
|
+
symbol => { push(:symbol, ts, te) };
|
122
|
+
mspaces => { push(:space, ts, te) };
|
123
|
+
[0-9] => { push(:digit, ts, te) };
|
124
|
+
lower => { push(:char, ts, te) };
|
125
|
+
any => { push(:any, ts, te) };
|
126
|
+
|
127
|
+
*|;
|
128
|
+
|
129
|
+
}%%
|
130
|
+
%% write data;
|
131
|
+
|
132
|
+
extend Extensions
|
133
|
+
|
134
|
+
def self.execute!
|
135
|
+
data = @data
|
136
|
+
eof = data.length
|
137
|
+
%% write init;
|
138
|
+
%% write exec;
|
139
|
+
end
|
140
|
+
|
141
|
+
end
|
142
|
+
end
|
143
|
+
end
|
144
|
+
end
|
@@ -0,0 +1,64 @@
|
|
1
|
+
Sourcify.require_rb('common', 'parser', 'raw_scanner', 'extensions')
|
2
|
+
|
3
|
+
module Sourcify
|
4
|
+
module Method
|
5
|
+
class Parser
|
6
|
+
module RawScanner #:nodoc:all
|
7
|
+
module Extensions
|
8
|
+
|
9
|
+
include Common::Parser::RawScanner::Extensions
|
10
|
+
Counter = Common::Parser::RawScanner::Counter
|
11
|
+
|
12
|
+
def increment_lineno
|
13
|
+
stop_if_probably_defined_by_proc
|
14
|
+
super
|
15
|
+
end
|
16
|
+
|
17
|
+
def stop_if_probably_defined_by_proc
|
18
|
+
raise ProbablyDefinedByProc if @lineno == 1 && @results.empty? && !@counter.started?
|
19
|
+
end
|
20
|
+
|
21
|
+
def increment_counter(count = 1)
|
22
|
+
unless @counter.started?
|
23
|
+
return if (@rejecting_block = codified_tokens !~ @start_pattern)
|
24
|
+
offset_attributes
|
25
|
+
end
|
26
|
+
@counter.increment(count)
|
27
|
+
end
|
28
|
+
|
29
|
+
def decrement_counter
|
30
|
+
@counter.decrement
|
31
|
+
construct_result_code if @counter.balanced?
|
32
|
+
end
|
33
|
+
|
34
|
+
def construct_result_code
|
35
|
+
code = codified_tokens.strip
|
36
|
+
|
37
|
+
begin
|
38
|
+
if valid?(code) && @body_matcher.call(code)
|
39
|
+
# NOTE: Need to fix singleton method to avoid errors (eg. undefined object)
|
40
|
+
# downstream
|
41
|
+
@results << code.sub(%r{^(def\s+)(?:[^\.]+\.)?(#{@name}.*end)$}m, '\1\2')
|
42
|
+
raise Escape if @stop_on_newline or @lineno != 1
|
43
|
+
reset_attributes
|
44
|
+
end
|
45
|
+
rescue Exception
|
46
|
+
raise if $!.is_a?(Escape)
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def reset_attributes
|
51
|
+
@counter = Counter.new
|
52
|
+
super
|
53
|
+
end
|
54
|
+
|
55
|
+
def valid?(*args)
|
56
|
+
# TODO: shouldn't need this check, there seems to be a bug w raw_scanner.rl.
|
57
|
+
args[0].start_with?('def') && super
|
58
|
+
end
|
59
|
+
|
60
|
+
end
|
61
|
+
end
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
Sourcify.require_rb('method', 'parser', 'raw_scanner')
|
2
|
+
|
3
|
+
module Sourcify
|
4
|
+
module Method
|
5
|
+
class Parser #:nodoc:all
|
6
|
+
class Scanner
|
7
|
+
class << self
|
8
|
+
|
9
|
+
def process(source_code, opts, &matcher)
|
10
|
+
results = rscan(source_code.to_s, {
|
11
|
+
:start_pattern => scan_pattern_hint(opts[:attached_to]),
|
12
|
+
:body_matcher => opts[:body_matcher],
|
13
|
+
:ignore_nested => opts[:ignore_nested],
|
14
|
+
:stop_on_newline => false,
|
15
|
+
}).flatten.select(&matcher)
|
16
|
+
case results.size
|
17
|
+
when 0 then raise NoMatchingMethodError
|
18
|
+
when 1 then results[0]
|
19
|
+
else raise MultipleMatchingMethodsPerLineError
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def scan_pattern_hint(val)
|
24
|
+
case val
|
25
|
+
when Regexp then val
|
26
|
+
when String, Symbol then /^(?:.*?\W|)#{val}(?:\W)/
|
27
|
+
when nil then /.*/
|
28
|
+
else raise TypeError
|
29
|
+
end
|
30
|
+
end
|
31
|
+
|
32
|
+
def rscan(str, opts)
|
33
|
+
results = RawScanner.process(str, opts) || []
|
34
|
+
return results if opts[:ignore_nested]
|
35
|
+
results.map do |outer|
|
36
|
+
inner = rscan(
|
37
|
+
outer.sub(/^def(.*)end$/,'\1').sub(/^(?:.*?)(def.*)$/,'\1'),
|
38
|
+
opts.merge(:stop_on_newline => true)
|
39
|
+
)
|
40
|
+
[outer, inner]
|
41
|
+
end
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
48
|
+
end
|
data/lib/sourcify/proc.rb
CHANGED
@@ -2,8 +2,6 @@ module Sourcify
|
|
2
2
|
|
3
3
|
class MultipleMatchingProcsPerLineError < Exception; end
|
4
4
|
class NoMatchingProcError < Exception; end
|
5
|
-
class ParserInternalError < Exception; end
|
6
|
-
class CannotParseEvalCodeError < Exception; end
|
7
5
|
class CannotHandleCreatedOnTheFlyProcError < Exception; end
|
8
6
|
|
9
7
|
module Proc
|
data/lib/sourcify/proc/parser.rb
CHANGED
@@ -1,5 +1,4 @@
|
|
1
|
-
|
2
|
-
%w{normalizer code_scanner source_code converter}.each do |file|
|
1
|
+
%w{normalizer scanner source_code converter}.each do |file|
|
3
2
|
Sourcify.require_rb('proc', 'parser', file)
|
4
3
|
end
|
5
4
|
|
@@ -7,8 +6,6 @@ module Sourcify
|
|
7
6
|
module Proc
|
8
7
|
class Parser #:nodoc:all
|
9
8
|
|
10
|
-
IS_19x = RUBY_VERSION.include?('1.9.')
|
11
|
-
|
12
9
|
def initialize(_proc)
|
13
10
|
@arity, @source_code = _proc.arity, SourceCode.new(*_proc.source_location(false))
|
14
11
|
raise CannotHandleCreatedOnTheFlyProcError unless @source_code.file
|
@@ -38,7 +35,7 @@ module Sourcify
|
|
38
35
|
private
|
39
36
|
|
40
37
|
def extracted_source(opts)
|
41
|
-
|
38
|
+
Scanner.process(@source_code, opts) do |code|
|
42
39
|
begin
|
43
40
|
eval(code).arity == @arity
|
44
41
|
rescue Exception
|
@@ -1,29 +1,8 @@
|
|
1
1
|
module Sourcify
|
2
2
|
module Proc
|
3
3
|
class Parser #:nodoc:all
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
RUBY_PARSER = RubyParser.new
|
8
|
-
RUBY_2_RUBY = Ruby2Ruby.new
|
9
|
-
|
10
|
-
def to_sexp(code, file = nil)
|
11
|
-
retried = false
|
12
|
-
begin
|
13
|
-
RUBY_PARSER.reset
|
14
|
-
(retried ? RubyParser.new : RUBY_PARSER).parse(*[code, file].compact)
|
15
|
-
rescue Racc::ParseError, SyntaxError
|
16
|
-
return nil if retried
|
17
|
-
retried = true; retry
|
18
|
-
end
|
19
|
-
end
|
20
|
-
|
21
|
-
def to_code(sexp)
|
22
|
-
RUBY_2_RUBY.process(Sexp.from_array(sexp.to_a))
|
23
|
-
end
|
24
|
-
|
25
|
-
end
|
26
|
-
end
|
4
|
+
Sourcify.require_rb('common', 'parser', 'converter')
|
5
|
+
Converter = Common::Parser::Converter
|
27
6
|
end
|
28
7
|
end
|
29
8
|
end
|
@@ -1,25 +1,26 @@
|
|
1
1
|
|
2
|
-
# line 1 "/home/ty.archlinux/dev/ty/sourcify/
|
3
|
-
Sourcify.require_rb('proc', '
|
2
|
+
# line 1 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
3
|
+
Sourcify.require_rb('proc', 'parser', 'raw_scanner_extensions')
|
4
4
|
|
5
5
|
module Sourcify
|
6
6
|
module Proc
|
7
|
-
|
7
|
+
class Parser
|
8
|
+
module RawScanner #:nodoc:all
|
8
9
|
|
9
10
|
|
10
|
-
# line
|
11
|
+
# line 134 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
11
12
|
|
12
13
|
|
13
|
-
# line 2 "/home/ty.archlinux/dev/ty/sourcify/
|
14
|
+
# line 2 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rb"
|
14
15
|
class << self
|
15
|
-
attr_accessor :
|
16
|
-
private :
|
16
|
+
attr_accessor :_scanner_actions
|
17
|
+
private :_scanner_actions, :_scanner_actions=
|
17
18
|
end
|
18
|
-
self.
|
19
|
+
self._scanner_actions = [
|
19
20
|
0, 1, 0, 1, 2, 1, 3, 1,
|
20
|
-
|
21
|
-
|
22
|
-
|
21
|
+
5, 1, 7, 1, 8, 1, 9, 1,
|
22
|
+
12, 1, 13, 1, 14, 1, 15, 1,
|
23
|
+
16, 1, 17, 1, 18, 1, 19, 1,
|
23
24
|
20, 1, 21, 1, 22, 1, 23, 1,
|
24
25
|
24, 1, 25, 1, 26, 1, 27, 1,
|
25
26
|
28, 1, 29, 1, 30, 1, 31, 1,
|
@@ -43,64 +44,64 @@ self._proc_scanner_actions = [
|
|
43
44
|
104, 1, 105, 1, 106, 1, 107, 1,
|
44
45
|
108, 1, 109, 1, 110, 1, 111, 1,
|
45
46
|
112, 1, 113, 2, 0, 1, 2, 3,
|
46
|
-
|
47
|
-
3,
|
47
|
+
4, 2, 3, 6, 2, 3, 10, 2,
|
48
|
+
3, 11, 2, 3, 84, 2, 3, 85,
|
48
49
|
2, 3, 86, 2, 3, 87
|
49
50
|
]
|
50
51
|
|
51
52
|
class << self
|
52
|
-
attr_accessor :
|
53
|
-
private :
|
53
|
+
attr_accessor :_scanner_key_offsets
|
54
|
+
private :_scanner_key_offsets, :_scanner_key_offsets=
|
54
55
|
end
|
55
|
-
self.
|
56
|
+
self._scanner_key_offsets = [
|
56
57
|
0, 0, 1, 2, 3, 4, 5, 6,
|
57
58
|
7, 11, 19, 24, 35, 36, 37, 41,
|
58
|
-
51, 58, 62, 63,
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
|
82
|
-
|
59
|
+
51, 58, 62, 63, 65, 67, 69, 71,
|
60
|
+
72, 73, 101, 129, 131, 132, 133, 135,
|
61
|
+
137, 139, 140, 141, 143, 145, 147, 148,
|
62
|
+
149, 151, 153, 155, 156, 157, 159, 161,
|
63
|
+
163, 164, 165, 167, 169, 171, 172, 173,
|
64
|
+
175, 177, 179, 180, 181, 183, 185, 187,
|
65
|
+
188, 189, 191, 193, 195, 196, 197, 199,
|
66
|
+
201, 203, 204, 205, 207, 209, 211, 212,
|
67
|
+
213, 215, 217, 219, 220, 221, 223, 225,
|
68
|
+
227, 228, 229, 231, 233, 235, 236, 237,
|
69
|
+
239, 241, 243, 244, 245, 247, 249, 251,
|
70
|
+
252, 253, 255, 257, 259, 260, 261, 263,
|
71
|
+
265, 267, 268, 269, 271, 273, 275, 276,
|
72
|
+
277, 279, 281, 283, 284, 285, 287, 289,
|
73
|
+
291, 292, 293, 295, 297, 299, 300, 302,
|
74
|
+
304, 305, 306, 308, 309, 310, 312, 314,
|
75
|
+
316, 317, 318, 320, 322, 324, 325, 326,
|
76
|
+
328, 330, 332, 333, 334, 336, 338, 340,
|
77
|
+
341, 342, 344, 346, 348, 349, 350, 352,
|
78
|
+
354, 355, 356, 357, 358, 359, 360, 361,
|
79
|
+
362, 363, 364, 365, 366, 367, 368, 369,
|
80
|
+
370, 371, 372, 373, 374, 375, 376, 377,
|
81
|
+
378, 379, 380, 381, 382, 383, 384, 385,
|
82
|
+
392, 393, 394, 395, 396, 397, 409, 414,
|
83
|
+
415, 416, 417, 418, 425, 426, 427, 428,
|
83
84
|
430, 431, 432, 433, 434, 435, 436, 437,
|
84
85
|
438, 466, 470, 471, 476, 484, 491, 492,
|
85
86
|
493, 501, 502, 503, 511, 520, 529, 538,
|
86
|
-
547, 556, 565,
|
87
|
-
|
88
|
-
|
89
|
-
|
90
|
-
|
91
|
-
|
92
|
-
|
93
|
-
|
94
|
-
|
95
|
-
|
87
|
+
547, 556, 565, 566, 567, 568, 569, 570,
|
88
|
+
571, 576, 610, 612, 614, 616, 618, 620,
|
89
|
+
622, 624, 626, 628, 630, 632, 634, 636,
|
90
|
+
638, 640, 642, 644, 646, 648, 650, 652,
|
91
|
+
654, 655, 657, 659, 661, 663, 665, 667,
|
92
|
+
669, 670, 671, 672, 673, 674, 675, 676,
|
93
|
+
677, 678, 679, 680, 681, 682, 683, 684,
|
94
|
+
685, 686, 687, 688, 689, 690, 691, 692,
|
95
|
+
693, 694, 695, 696, 697, 709, 713, 714,
|
96
|
+
716, 721, 722, 723, 724, 725, 726, 727,
|
96
97
|
728
|
97
98
|
]
|
98
99
|
|
99
100
|
class << self
|
100
|
-
attr_accessor :
|
101
|
-
private :
|
101
|
+
attr_accessor :_scanner_trans_keys
|
102
|
+
private :_scanner_trans_keys, :_scanner_trans_keys=
|
102
103
|
end
|
103
|
-
self.
|
104
|
+
self._scanner_trans_keys = [
|
104
105
|
98, 101, 103, 105, 110, 10, 58, 65,
|
105
106
|
90, 97, 122, 34, 39, 45, 95, 65,
|
106
107
|
90, 97, 122, 95, 65, 90, 97, 122,
|
@@ -108,14 +109,7 @@ self._proc_scanner_trans_keys = [
|
|
108
109
|
90, 97, 122, 10, 58, 65, 90, 97,
|
109
110
|
122, 10, 34, 39, 95, 48, 57, 65,
|
110
111
|
90, 97, 122, 34, 39, 95, 65, 90,
|
111
|
-
97, 122, 65, 90, 97, 122,
|
112
|
-
110, 95, 48, 57, 65, 90, 97, 122,
|
113
|
-
115, 101, 97, 115, 115, 9, 32, 60,
|
114
|
-
95, 11, 13, 48, 57, 65, 90, 97,
|
115
|
-
122, 9, 32, 60, 11, 13, 60, 10,
|
116
|
-
102, 114, 95, 48, 57, 65, 90, 97,
|
117
|
-
122, 100, 117, 108, 108, 116, 101, 115,
|
118
|
-
115, 105, 108, 105, 108, 101, 10, 10,
|
112
|
+
97, 122, 65, 90, 97, 122, 10, 10,
|
119
113
|
61, 10, 101, 10, 110, 10, 100, 10,
|
120
114
|
10, 33, 34, 35, 36, 37, 38, 39,
|
121
115
|
40, 42, 43, 44, 45, 46, 47, 58,
|
@@ -155,7 +149,14 @@ self._proc_scanner_trans_keys = [
|
|
155
149
|
92, 126, 34, 39, 47, 96, 126, 33,
|
156
150
|
64, 35, 36, 37, 94, 38, 42, 45,
|
157
151
|
95, 43, 61, 62, 124, 58, 59, 44,
|
158
|
-
46, 63, 125, 93, 41, 92,
|
152
|
+
46, 63, 125, 93, 41, 92, 103, 105,
|
153
|
+
110, 95, 48, 57, 65, 90, 97, 122,
|
154
|
+
115, 101, 97, 115, 115, 9, 32, 60,
|
155
|
+
95, 11, 13, 48, 57, 65, 90, 97,
|
156
|
+
122, 9, 32, 60, 11, 13, 60, 10,
|
157
|
+
102, 114, 95, 48, 57, 65, 90, 97,
|
158
|
+
122, 100, 117, 108, 108, 116, 101, 115,
|
159
|
+
115, 105, 108, 105, 108, 101, 10, 32,
|
159
160
|
34, 35, 37, 39, 40, 44, 47, 58,
|
160
161
|
59, 60, 61, 92, 96, 100, 101, 116,
|
161
162
|
123, 125, 9, 13, 48, 57, 65, 90,
|
@@ -171,11 +172,7 @@ self._proc_scanner_trans_keys = [
|
|
171
172
|
97, 122, 58, 95, 104, 48, 57, 65,
|
172
173
|
90, 97, 122, 58, 95, 101, 48, 57,
|
173
174
|
65, 90, 97, 122, 58, 95, 110, 48,
|
174
|
-
57, 65, 90, 97, 122,
|
175
|
-
99, 100, 102, 105, 109, 117, 119, 11,
|
176
|
-
13, 9, 32, 11, 13, 101, 97, 108,
|
177
|
-
9, 32, 60, 11, 13, 10, 60, 101,
|
178
|
-
111, 102, 111, 110, 104, 10, 10, 10,
|
175
|
+
57, 65, 90, 97, 122, 10, 10, 10,
|
179
176
|
10, 10, 10, 34, 37, 39, 47, 96,
|
180
177
|
33, 34, 35, 36, 37, 38, 39, 40,
|
181
178
|
42, 43, 44, 45, 46, 47, 58, 59,
|
@@ -192,21 +189,24 @@ self._proc_scanner_trans_keys = [
|
|
192
189
|
96, 126, 33, 64, 35, 36, 37, 94,
|
193
190
|
38, 42, 45, 95, 43, 61, 62, 124,
|
194
191
|
58, 59, 44, 46, 63, 125, 93, 41,
|
195
|
-
92,
|
192
|
+
92, 9, 32, 98, 99, 100, 102, 105,
|
193
|
+
109, 117, 119, 11, 13, 9, 32, 11,
|
194
|
+
13, 101, 97, 108, 9, 32, 60, 11,
|
195
|
+
13, 10, 60, 101, 111, 102, 111, 110,
|
196
|
+
104, 0
|
196
197
|
]
|
197
198
|
|
198
199
|
class << self
|
199
|
-
attr_accessor :
|
200
|
-
private :
|
200
|
+
attr_accessor :_scanner_single_lengths
|
201
|
+
private :_scanner_single_lengths, :_scanner_single_lengths=
|
201
202
|
end
|
202
|
-
self.
|
203
|
+
self._scanner_single_lengths = [
|
203
204
|
0, 1, 1, 1, 1, 1, 1, 1,
|
204
205
|
0, 4, 1, 5, 1, 1, 0, 4,
|
205
|
-
3, 0, 1,
|
206
|
-
1,
|
207
|
-
|
208
|
-
|
209
|
-
2, 2, 2, 1, 1, 28, 28, 2,
|
206
|
+
3, 0, 1, 2, 2, 2, 2, 1,
|
207
|
+
1, 28, 28, 2, 1, 1, 2, 2,
|
208
|
+
2, 1, 1, 2, 2, 2, 1, 1,
|
209
|
+
2, 2, 2, 1, 1, 2, 2, 2,
|
210
210
|
1, 1, 2, 2, 2, 1, 1, 2,
|
211
211
|
2, 2, 1, 1, 2, 2, 2, 1,
|
212
212
|
1, 2, 2, 2, 1, 1, 2, 2,
|
@@ -217,43 +217,41 @@ self._proc_scanner_single_lengths = [
|
|
217
217
|
1, 2, 2, 2, 1, 1, 2, 2,
|
218
218
|
2, 1, 1, 2, 2, 2, 1, 1,
|
219
219
|
2, 2, 2, 1, 1, 2, 2, 2,
|
220
|
+
1, 1, 2, 2, 2, 1, 2, 2,
|
221
|
+
1, 1, 2, 1, 1, 2, 2, 2,
|
220
222
|
1, 1, 2, 2, 2, 1, 1, 2,
|
221
223
|
2, 2, 1, 1, 2, 2, 2, 1,
|
222
224
|
1, 2, 2, 2, 1, 1, 2, 2,
|
223
|
-
2, 1, 2, 2, 1, 1, 2, 1,
|
224
|
-
1, 2, 2, 2, 1, 1, 2, 2,
|
225
|
-
2, 1, 1, 2, 2, 2, 1, 1,
|
226
|
-
2, 2, 2, 1, 1, 2, 2, 2,
|
227
|
-
1, 1, 2, 2, 1, 1, 1, 1,
|
228
225
|
1, 1, 1, 1, 1, 1, 1, 1,
|
229
226
|
1, 1, 1, 1, 1, 1, 1, 1,
|
230
227
|
1, 1, 1, 1, 1, 1, 1, 1,
|
228
|
+
1, 1, 1, 1, 1, 1, 1, 1,
|
229
|
+
1, 1, 1, 1, 1, 4, 3, 1,
|
230
|
+
1, 1, 1, 1, 1, 1, 1, 2,
|
231
|
+
1, 1, 1, 1, 1, 1, 1, 1,
|
231
232
|
20, 2, 1, 1, 2, 1, 1, 1,
|
232
233
|
2, 1, 1, 2, 3, 3, 3, 3,
|
233
|
-
3, 3,
|
234
|
-
|
235
|
-
1, 1, 1, 1, 1, 5, 34, 2,
|
234
|
+
3, 3, 1, 1, 1, 1, 1, 1,
|
235
|
+
5, 34, 2, 2, 2, 2, 2, 2,
|
236
236
|
2, 2, 2, 2, 2, 2, 2, 2,
|
237
237
|
2, 2, 2, 2, 2, 2, 2, 2,
|
238
|
-
|
239
|
-
2, 2, 2, 2, 2, 1, 1, 1,
|
238
|
+
1, 2, 2, 2, 2, 2, 2, 2,
|
240
239
|
1, 1, 1, 1, 1, 1, 1, 1,
|
241
240
|
1, 1, 1, 1, 1, 1, 1, 1,
|
242
241
|
1, 1, 1, 1, 1, 1, 1, 1,
|
242
|
+
1, 1, 1, 1, 10, 2, 1, 2,
|
243
|
+
3, 1, 1, 1, 1, 1, 1, 1,
|
243
244
|
1
|
244
245
|
]
|
245
246
|
|
246
247
|
class << self
|
247
|
-
attr_accessor :
|
248
|
-
private :
|
248
|
+
attr_accessor :_scanner_range_lengths
|
249
|
+
private :_scanner_range_lengths, :_scanner_range_lengths=
|
249
250
|
end
|
250
|
-
self.
|
251
|
+
self._scanner_range_lengths = [
|
251
252
|
0, 0, 0, 0, 0, 0, 0, 0,
|
252
253
|
2, 2, 2, 3, 0, 0, 2, 3,
|
253
|
-
2, 2, 0, 0, 0,
|
254
|
-
0, 0, 0, 4, 1, 0, 0, 0,
|
255
|
-
0, 3, 0, 0, 0, 0, 0, 0,
|
256
|
-
0, 0, 0, 0, 0, 0, 0, 0,
|
254
|
+
2, 2, 0, 0, 0, 0, 0, 0,
|
257
255
|
0, 0, 0, 0, 0, 0, 0, 0,
|
258
256
|
0, 0, 0, 0, 0, 0, 0, 0,
|
259
257
|
0, 0, 0, 0, 0, 0, 0, 0,
|
@@ -275,12 +273,13 @@ self._proc_scanner_range_lengths = [
|
|
275
273
|
0, 0, 0, 0, 0, 0, 0, 0,
|
276
274
|
0, 0, 0, 0, 0, 0, 0, 0,
|
277
275
|
0, 0, 0, 0, 0, 0, 0, 0,
|
276
|
+
0, 0, 0, 0, 0, 0, 0, 3,
|
277
|
+
0, 0, 0, 0, 0, 4, 1, 0,
|
278
|
+
0, 0, 0, 3, 0, 0, 0, 0,
|
278
279
|
0, 0, 0, 0, 0, 0, 0, 0,
|
279
280
|
4, 1, 0, 2, 3, 3, 0, 0,
|
280
281
|
3, 0, 0, 3, 3, 3, 3, 3,
|
281
|
-
3, 3,
|
282
|
-
0, 0, 0, 0, 0, 0, 0, 0,
|
283
|
-
0, 0, 0, 0, 0, 0, 0, 0,
|
282
|
+
3, 3, 0, 0, 0, 0, 0, 0,
|
284
283
|
0, 0, 0, 0, 0, 0, 0, 0,
|
285
284
|
0, 0, 0, 0, 0, 0, 0, 0,
|
286
285
|
0, 0, 0, 0, 0, 0, 0, 0,
|
@@ -288,62 +287,64 @@ self._proc_scanner_range_lengths = [
|
|
288
287
|
0, 0, 0, 0, 0, 0, 0, 0,
|
289
288
|
0, 0, 0, 0, 0, 0, 0, 0,
|
290
289
|
0, 0, 0, 0, 0, 0, 0, 0,
|
290
|
+
0, 0, 0, 0, 1, 1, 0, 0,
|
291
|
+
1, 0, 0, 0, 0, 0, 0, 0,
|
291
292
|
0
|
292
293
|
]
|
293
294
|
|
294
295
|
class << self
|
295
|
-
attr_accessor :
|
296
|
-
private :
|
296
|
+
attr_accessor :_scanner_index_offsets
|
297
|
+
private :_scanner_index_offsets, :_scanner_index_offsets=
|
297
298
|
end
|
298
|
-
self.
|
299
|
+
self._scanner_index_offsets = [
|
299
300
|
0, 0, 2, 4, 6, 8, 10, 12,
|
300
301
|
14, 17, 24, 28, 37, 39, 41, 44,
|
301
|
-
52, 58, 61, 63,
|
302
|
-
|
303
|
-
|
304
|
-
|
305
|
-
|
306
|
-
|
307
|
-
233,
|
308
|
-
254,
|
309
|
-
|
310
|
-
|
311
|
-
|
312
|
-
337,
|
313
|
-
358,
|
314
|
-
|
315
|
-
|
316
|
-
421, 423, 425, 428,
|
317
|
-
441,
|
318
|
-
|
319
|
-
|
320
|
-
503, 505,
|
321
|
-
|
322
|
-
|
323
|
-
|
324
|
-
|
325
|
-
|
302
|
+
52, 58, 61, 63, 66, 69, 72, 75,
|
303
|
+
77, 79, 108, 137, 140, 142, 144, 147,
|
304
|
+
150, 153, 155, 157, 160, 163, 166, 168,
|
305
|
+
170, 173, 176, 179, 181, 183, 186, 189,
|
306
|
+
192, 194, 196, 199, 202, 205, 207, 209,
|
307
|
+
212, 215, 218, 220, 222, 225, 228, 231,
|
308
|
+
233, 235, 238, 241, 244, 246, 248, 251,
|
309
|
+
254, 257, 259, 261, 264, 267, 270, 272,
|
310
|
+
274, 277, 280, 283, 285, 287, 290, 293,
|
311
|
+
296, 298, 300, 303, 306, 309, 311, 313,
|
312
|
+
316, 319, 322, 324, 326, 329, 332, 335,
|
313
|
+
337, 339, 342, 345, 348, 350, 352, 355,
|
314
|
+
358, 361, 363, 365, 368, 371, 374, 376,
|
315
|
+
378, 381, 384, 387, 389, 391, 394, 397,
|
316
|
+
400, 402, 404, 407, 410, 413, 415, 418,
|
317
|
+
421, 423, 425, 428, 430, 432, 435, 438,
|
318
|
+
441, 443, 445, 448, 451, 454, 456, 458,
|
319
|
+
461, 464, 467, 469, 471, 474, 477, 480,
|
320
|
+
482, 484, 487, 490, 493, 495, 497, 500,
|
321
|
+
503, 505, 507, 509, 511, 513, 515, 517,
|
322
|
+
519, 521, 523, 525, 527, 529, 531, 533,
|
323
|
+
535, 537, 539, 541, 543, 545, 547, 549,
|
324
|
+
551, 553, 555, 557, 559, 561, 563, 565,
|
325
|
+
570, 572, 574, 576, 578, 580, 589, 594,
|
326
|
+
596, 598, 600, 602, 607, 609, 611, 613,
|
326
327
|
616, 618, 620, 622, 624, 626, 628, 630,
|
327
328
|
632, 657, 661, 663, 667, 673, 678, 680,
|
328
329
|
682, 688, 690, 692, 698, 705, 712, 719,
|
329
|
-
726, 733, 740,
|
330
|
-
|
331
|
-
|
332
|
-
838, 841, 844, 847, 850, 853, 856,
|
333
|
-
|
334
|
-
|
335
|
-
|
336
|
-
|
337
|
-
|
338
|
-
|
330
|
+
726, 733, 740, 742, 744, 746, 748, 750,
|
331
|
+
752, 758, 793, 796, 799, 802, 805, 808,
|
332
|
+
811, 814, 817, 820, 823, 826, 829, 832,
|
333
|
+
835, 838, 841, 844, 847, 850, 853, 856,
|
334
|
+
859, 861, 864, 867, 870, 873, 876, 879,
|
335
|
+
882, 884, 886, 888, 890, 892, 894, 896,
|
336
|
+
898, 900, 902, 904, 906, 908, 910, 912,
|
337
|
+
914, 916, 918, 920, 922, 924, 926, 928,
|
338
|
+
930, 932, 934, 936, 938, 950, 954, 956,
|
339
|
+
959, 964, 966, 968, 970, 972, 974, 976,
|
339
340
|
978
|
340
341
|
]
|
341
342
|
|
342
343
|
class << self
|
343
|
-
attr_accessor :
|
344
|
-
private :
|
344
|
+
attr_accessor :_scanner_indicies
|
345
|
+
private :_scanner_indicies, :_scanner_indicies=
|
345
346
|
end
|
346
|
-
self.
|
347
|
+
self._scanner_indicies = [
|
347
348
|
1, 0, 2, 0, 3, 0, 4, 0,
|
348
349
|
5, 0, 6, 5, 8, 7, 9, 9,
|
349
350
|
7, 11, 11, 12, 14, 13, 14, 10,
|
@@ -351,78 +352,78 @@ self._proc_scanner_indicies = [
|
|
351
352
|
13, 13, 13, 13, 10, 15, 10, 18,
|
352
353
|
10, 13, 13, 10, 15, 16, 16, 14,
|
353
354
|
14, 14, 14, 10, 11, 11, 14, 13,
|
354
|
-
14, 10, 20, 20, 19,
|
355
|
-
|
356
|
-
|
357
|
-
|
358
|
-
|
359
|
-
|
360
|
-
|
361
|
-
|
362
|
-
|
363
|
-
|
364
|
-
|
365
|
-
|
366
|
-
|
367
|
-
|
368
|
-
|
369
|
-
|
370
|
-
|
371
|
-
|
372
|
-
|
373
|
-
|
374
|
-
|
375
|
-
|
376
|
-
|
377
|
-
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
383
|
-
|
384
|
-
|
385
|
-
156, 155,
|
386
|
-
158,
|
387
|
-
|
388
|
-
|
389
|
-
|
390
|
-
170,
|
391
|
-
|
392
|
-
|
393
|
-
|
394
|
-
|
395
|
-
|
396
|
-
|
397
|
-
|
398
|
-
|
399
|
-
|
400
|
-
|
401
|
-
|
402
|
-
|
403
|
-
|
404
|
-
|
405
|
-
|
406
|
-
|
407
|
-
|
408
|
-
|
409
|
-
|
410
|
-
|
411
|
-
|
412
|
-
|
413
|
-
|
414
|
-
|
415
|
-
|
416
|
-
|
417
|
-
|
418
|
-
|
419
|
-
|
420
|
-
|
421
|
-
|
422
|
-
|
423
|
-
|
424
|
-
|
425
|
-
|
355
|
+
14, 10, 20, 20, 19, 23, 22, 23,
|
356
|
+
24, 22, 23, 25, 22, 23, 26, 22,
|
357
|
+
23, 27, 22, 29, 28, 31, 30, 33,
|
358
|
+
34, 35, 36, 37, 38, 39, 40, 41,
|
359
|
+
42, 43, 44, 45, 46, 47, 48, 49,
|
360
|
+
50, 51, 52, 53, 54, 55, 56, 57,
|
361
|
+
58, 59, 60, 32, 61, 62, 63, 64,
|
362
|
+
65, 66, 67, 68, 69, 70, 71, 72,
|
363
|
+
73, 74, 75, 76, 77, 78, 79, 80,
|
364
|
+
81, 82, 83, 84, 85, 86, 87, 88,
|
365
|
+
32, 89, 90, 61, 92, 91, 89, 91,
|
366
|
+
89, 95, 94, 92, 95, 94, 89, 96,
|
367
|
+
62, 98, 97, 89, 97, 89, 100, 99,
|
368
|
+
98, 100, 99, 89, 101, 63, 103, 102,
|
369
|
+
89, 102, 89, 105, 104, 103, 105, 104,
|
370
|
+
89, 106, 64, 108, 107, 89, 107, 89,
|
371
|
+
110, 109, 108, 110, 109, 89, 111, 65,
|
372
|
+
113, 112, 89, 112, 89, 115, 114, 113,
|
373
|
+
115, 114, 89, 116, 66, 118, 117, 89,
|
374
|
+
117, 89, 120, 119, 118, 120, 119, 89,
|
375
|
+
122, 67, 124, 123, 89, 123, 89, 126,
|
376
|
+
125, 124, 126, 125, 89, 127, 68, 129,
|
377
|
+
128, 89, 128, 89, 131, 130, 129, 131,
|
378
|
+
130, 89, 132, 69, 134, 133, 89, 133,
|
379
|
+
89, 136, 135, 134, 136, 135, 89, 137,
|
380
|
+
70, 139, 138, 89, 138, 89, 141, 140,
|
381
|
+
139, 141, 140, 89, 142, 71, 144, 143,
|
382
|
+
89, 143, 89, 146, 145, 144, 146, 145,
|
383
|
+
89, 147, 72, 149, 148, 89, 148, 89,
|
384
|
+
151, 150, 149, 151, 150, 89, 152, 73,
|
385
|
+
154, 153, 89, 153, 89, 156, 155, 154,
|
386
|
+
156, 155, 89, 157, 74, 159, 158, 89,
|
387
|
+
158, 89, 161, 160, 159, 161, 160, 89,
|
388
|
+
162, 75, 164, 163, 89, 163, 89, 166,
|
389
|
+
165, 164, 166, 165, 89, 167, 76, 169,
|
390
|
+
168, 89, 168, 89, 171, 170, 169, 171,
|
391
|
+
170, 89, 172, 77, 174, 173, 89, 173,
|
392
|
+
89, 176, 175, 174, 176, 175, 89, 177,
|
393
|
+
78, 179, 178, 89, 178, 89, 181, 180,
|
394
|
+
179, 181, 180, 89, 182, 79, 184, 183,
|
395
|
+
89, 183, 89, 186, 185, 184, 186, 185,
|
396
|
+
89, 187, 80, 189, 188, 89, 188, 89,
|
397
|
+
191, 190, 189, 191, 190, 192, 89, 81,
|
398
|
+
194, 193, 89, 193, 196, 89, 195, 196,
|
399
|
+
194, 195, 197, 198, 82, 89, 197, 93,
|
400
|
+
200, 199, 93, 201, 199, 203, 202, 198,
|
401
|
+
202, 204, 89, 83, 206, 205, 89, 205,
|
402
|
+
208, 89, 207, 208, 206, 207, 209, 89,
|
403
|
+
84, 211, 210, 89, 210, 213, 89, 212,
|
404
|
+
213, 211, 212, 214, 89, 85, 216, 215,
|
405
|
+
89, 215, 218, 89, 217, 218, 216, 217,
|
406
|
+
219, 89, 86, 221, 220, 89, 220, 223,
|
407
|
+
89, 222, 223, 221, 222, 224, 89, 87,
|
408
|
+
226, 225, 89, 225, 228, 89, 227, 228,
|
409
|
+
226, 227, 229, 89, 88, 231, 230, 89,
|
410
|
+
230, 233, 89, 232, 233, 231, 232, 235,
|
411
|
+
234, 237, 236, 239, 238, 241, 240, 243,
|
412
|
+
242, 245, 244, 247, 246, 249, 248, 251,
|
413
|
+
250, 253, 252, 255, 254, 257, 256, 259,
|
414
|
+
258, 261, 260, 263, 262, 265, 264, 267,
|
415
|
+
266, 269, 268, 271, 270, 273, 272, 275,
|
416
|
+
274, 277, 276, 279, 278, 281, 280, 283,
|
417
|
+
282, 285, 284, 287, 286, 289, 288, 291,
|
418
|
+
290, 292, 290, 293, 290, 290, 290, 290,
|
419
|
+
290, 294, 295, 290, 293, 290, 296, 290,
|
420
|
+
297, 290, 298, 290, 299, 299, 300, 290,
|
421
|
+
299, 290, 290, 290, 294, 302, 302, 303,
|
422
|
+
302, 301, 304, 301, 301, 305, 293, 290,
|
423
|
+
306, 290, 290, 290, 290, 290, 307, 308,
|
424
|
+
290, 309, 290, 295, 290, 310, 311, 290,
|
425
|
+
312, 290, 313, 290, 293, 290, 314, 290,
|
426
|
+
306, 290, 315, 290, 316, 290, 306, 290,
|
426
427
|
319, 318, 320, 321, 320, 320, 322, 322,
|
427
428
|
323, 325, 322, 326, 327, 328, 320, 330,
|
428
429
|
331, 332, 333, 334, 318, 324, 20, 329,
|
@@ -436,120 +437,116 @@ self._proc_scanner_indicies = [
|
|
436
437
|
351, 329, 355, 329, 329, 329, 352, 351,
|
437
438
|
329, 356, 329, 329, 329, 352, 351, 329,
|
438
439
|
357, 329, 329, 329, 352, 351, 329, 358,
|
439
|
-
329, 329, 329, 352,
|
440
|
-
|
441
|
-
|
442
|
-
|
443
|
-
|
444
|
-
|
445
|
-
|
446
|
-
|
447
|
-
|
448
|
-
|
449
|
-
|
450
|
-
|
451
|
-
|
452
|
-
|
453
|
-
|
454
|
-
|
455
|
-
|
456
|
-
|
457
|
-
|
458
|
-
|
459
|
-
|
460
|
-
|
461
|
-
|
462
|
-
|
463
|
-
|
464
|
-
|
465
|
-
|
466
|
-
|
467
|
-
|
468
|
-
|
469
|
-
|
440
|
+
329, 329, 329, 352, 31, 359, 360, 359,
|
441
|
+
23, 22, 23, 27, 29, 28, 362, 30,
|
442
|
+
34, 364, 365, 46, 57, 363, 33, 34,
|
443
|
+
35, 36, 37, 38, 39, 40, 41, 42,
|
444
|
+
43, 44, 45, 46, 47, 48, 49, 50,
|
445
|
+
51, 52, 367, 367, 53, 54, 55, 56,
|
446
|
+
57, 368, 367, 368, 367, 58, 59, 60,
|
447
|
+
366, 89, 95, 94, 89, 100, 99, 89,
|
448
|
+
105, 104, 89, 110, 109, 89, 115, 114,
|
449
|
+
89, 120, 119, 89, 126, 125, 89, 131,
|
450
|
+
130, 89, 136, 135, 89, 141, 140, 89,
|
451
|
+
146, 145, 89, 151, 150, 89, 156, 155,
|
452
|
+
89, 161, 160, 89, 166, 165, 89, 171,
|
453
|
+
170, 89, 176, 175, 89, 181, 180, 89,
|
454
|
+
186, 185, 89, 191, 190, 196, 89, 195,
|
455
|
+
369, 201, 199, 203, 202, 208, 89, 207,
|
456
|
+
213, 89, 212, 218, 89, 217, 223, 89,
|
457
|
+
222, 228, 89, 227, 233, 89, 232, 89,
|
458
|
+
122, 67, 235, 234, 237, 236, 239, 238,
|
459
|
+
241, 240, 243, 242, 245, 244, 247, 246,
|
460
|
+
249, 248, 251, 250, 253, 252, 255, 254,
|
461
|
+
257, 256, 259, 258, 261, 260, 263, 262,
|
462
|
+
265, 264, 267, 266, 269, 268, 271, 270,
|
463
|
+
273, 272, 275, 274, 277, 276, 279, 278,
|
464
|
+
281, 280, 283, 282, 285, 284, 287, 286,
|
465
|
+
289, 288, 372, 372, 373, 374, 375, 376,
|
466
|
+
377, 378, 379, 380, 372, 371, 372, 372,
|
467
|
+
372, 381, 383, 382, 384, 385, 382, 302,
|
468
|
+
302, 303, 302, 386, 386, 305, 304, 386,
|
469
|
+
387, 382, 388, 382, 293, 382, 389, 382,
|
470
|
+
390, 382, 391, 382, 0
|
470
471
|
]
|
471
472
|
|
472
473
|
class << self
|
473
|
-
attr_accessor :
|
474
|
-
private :
|
474
|
+
attr_accessor :_scanner_trans_targs
|
475
|
+
private :_scanner_trans_targs, :_scanner_trans_targs=
|
475
476
|
end
|
476
|
-
self.
|
477
|
+
self._scanner_trans_targs = [
|
477
478
|
224, 2, 3, 4, 5, 6, 224, 224,
|
478
479
|
8, 228, 224, 10, 16, 11, 15, 224,
|
479
|
-
12, 13, 14, 224, 232,
|
480
|
-
|
481
|
-
|
482
|
-
|
483
|
-
|
484
|
-
|
485
|
-
|
486
|
-
|
487
|
-
|
488
|
-
|
489
|
-
|
490
|
-
|
491
|
-
|
492
|
-
|
493
|
-
|
494
|
-
73, 74,
|
495
|
-
|
496
|
-
88, 89,
|
497
|
-
|
498
|
-
104,
|
499
|
-
|
500
|
-
|
501
|
-
128, 129,
|
502
|
-
|
503
|
-
144,
|
504
|
-
|
505
|
-
|
506
|
-
|
507
|
-
|
508
|
-
|
509
|
-
|
510
|
-
|
511
|
-
|
512
|
-
|
513
|
-
|
514
|
-
|
515
|
-
|
516
|
-
|
480
|
+
12, 13, 14, 224, 232, 244, 18, 19,
|
481
|
+
20, 21, 22, 245, 23, 24, 247, 0,
|
482
|
+
248, 248, 248, 248, 248, 248, 248, 248,
|
483
|
+
248, 248, 248, 248, 248, 248, 248, 248,
|
484
|
+
248, 248, 248, 248, 248, 248, 248, 248,
|
485
|
+
248, 248, 248, 248, 248, 27, 32, 37,
|
486
|
+
42, 47, 52, 57, 62, 67, 72, 77,
|
487
|
+
82, 87, 92, 97, 102, 107, 112, 117,
|
488
|
+
122, 127, 132, 138, 143, 148, 153, 158,
|
489
|
+
163, 248, 28, 29, 250, 248, 30, 31,
|
490
|
+
33, 34, 251, 35, 36, 38, 39, 252,
|
491
|
+
40, 41, 43, 44, 253, 45, 46, 48,
|
492
|
+
49, 254, 50, 51, 53, 54, 255, 55,
|
493
|
+
56, 248, 58, 59, 256, 60, 61, 63,
|
494
|
+
64, 257, 65, 66, 68, 69, 258, 70,
|
495
|
+
71, 73, 74, 259, 75, 76, 78, 79,
|
496
|
+
260, 80, 81, 83, 84, 261, 85, 86,
|
497
|
+
88, 89, 262, 90, 91, 93, 94, 263,
|
498
|
+
95, 96, 98, 99, 264, 100, 101, 103,
|
499
|
+
104, 265, 105, 106, 108, 109, 266, 110,
|
500
|
+
111, 113, 114, 267, 115, 116, 118, 119,
|
501
|
+
268, 120, 121, 123, 124, 269, 125, 126,
|
502
|
+
128, 129, 270, 130, 131, 133, 271, 134,
|
503
|
+
135, 136, 137, 272, 139, 140, 273, 141,
|
504
|
+
142, 144, 145, 274, 146, 147, 149, 150,
|
505
|
+
275, 151, 152, 154, 155, 276, 156, 157,
|
506
|
+
159, 160, 277, 161, 162, 164, 165, 278,
|
507
|
+
166, 167, 168, 280, 169, 281, 170, 282,
|
508
|
+
171, 283, 172, 284, 173, 285, 174, 286,
|
509
|
+
175, 287, 176, 288, 177, 289, 178, 290,
|
510
|
+
179, 291, 180, 292, 181, 293, 182, 294,
|
511
|
+
183, 295, 184, 296, 185, 297, 186, 298,
|
512
|
+
187, 299, 188, 300, 189, 301, 190, 302,
|
513
|
+
191, 303, 192, 304, 193, 305, 194, 306,
|
514
|
+
195, 307, 308, 197, 198, 199, 308, 201,
|
515
|
+
203, 204, 205, 312, 314, 308, 206, 207,
|
516
|
+
208, 313, 211, 308, 213, 214, 216, 219,
|
517
|
+
217, 218, 220, 222, 223, 224, 225, 226,
|
517
518
|
224, 224, 224, 224, 224, 227, 230, 231,
|
518
519
|
234, 235, 236, 237, 239, 224, 224, 224,
|
519
520
|
224, 1, 224, 229, 224, 7, 9, 224,
|
520
521
|
224, 224, 233, 224, 17, 224, 224, 224,
|
521
|
-
224, 235, 238, 235, 240, 241, 235,
|
522
|
-
|
523
|
-
|
524
|
-
|
525
|
-
|
522
|
+
224, 235, 238, 235, 240, 241, 235, 243,
|
523
|
+
242, 244, 246, 248, 249, 279, 248, 25,
|
524
|
+
26, 248, 248, 308, 309, 310, 311, 315,
|
525
|
+
316, 317, 318, 319, 320, 308, 308, 196,
|
526
|
+
200, 202, 308, 209, 210, 212, 215, 221
|
526
527
|
]
|
527
528
|
|
528
529
|
class << self
|
529
|
-
attr_accessor :
|
530
|
-
private :
|
530
|
+
attr_accessor :_scanner_trans_actions
|
531
|
+
private :_scanner_trans_actions, :_scanner_trans_actions=
|
531
532
|
end
|
532
|
-
self.
|
533
|
+
self._scanner_trans_actions = [
|
533
534
|
203, 0, 0, 0, 0, 0, 171, 205,
|
534
535
|
0, 5, 207, 0, 0, 0, 0, 173,
|
535
|
-
0, 0, 0, 201, 0,
|
536
|
-
0,
|
537
|
-
|
538
|
-
|
539
|
-
|
540
|
-
|
541
|
-
51, 55, 35, 85, 57, 63, 75, 59,
|
542
|
-
77, 37, 71, 73, 67, 65, 79, 45,
|
543
|
-
83, 87, 53, 61, 39, 81, 69, 41,
|
536
|
+
0, 0, 0, 201, 0, 11, 0, 0,
|
537
|
+
0, 0, 0, 217, 0, 0, 0, 0,
|
538
|
+
83, 27, 17, 31, 33, 35, 39, 19,
|
539
|
+
69, 41, 47, 59, 43, 61, 21, 55,
|
540
|
+
57, 51, 49, 63, 29, 67, 71, 37,
|
541
|
+
45, 23, 65, 53, 25, 0, 0, 0,
|
544
542
|
0, 0, 0, 0, 0, 0, 0, 0,
|
545
543
|
0, 0, 0, 0, 0, 0, 0, 0,
|
546
544
|
0, 0, 0, 0, 0, 0, 0, 0,
|
547
|
-
0,
|
548
|
-
97, 0, 0, 0, 0, 5, 0, 0,
|
545
|
+
0, 15, 0, 0, 5, 81, 0, 0,
|
549
546
|
0, 0, 5, 0, 0, 0, 0, 5,
|
550
547
|
0, 0, 0, 0, 5, 0, 0, 0,
|
551
|
-
0, 5, 0, 0,
|
552
|
-
0,
|
548
|
+
0, 5, 0, 0, 0, 0, 5, 0,
|
549
|
+
0, 85, 0, 0, 5, 0, 0, 0,
|
553
550
|
0, 5, 0, 0, 0, 0, 5, 0,
|
554
551
|
0, 0, 0, 5, 0, 0, 0, 0,
|
555
552
|
5, 0, 0, 0, 0, 5, 0, 0,
|
@@ -558,34 +555,38 @@ self._proc_scanner_trans_actions = [
|
|
558
555
|
0, 5, 0, 0, 0, 0, 5, 0,
|
559
556
|
0, 0, 0, 5, 0, 0, 0, 0,
|
560
557
|
5, 0, 0, 0, 0, 5, 0, 0,
|
561
|
-
0,
|
562
|
-
0,
|
558
|
+
0, 0, 5, 0, 0, 0, 5, 0,
|
559
|
+
0, 0, 0, 5, 0, 0, 5, 0,
|
563
560
|
0, 0, 0, 5, 0, 0, 0, 0,
|
564
561
|
5, 0, 0, 0, 0, 5, 0, 0,
|
565
|
-
0, 0, 5, 0, 0, 0,
|
566
|
-
|
567
|
-
|
568
|
-
|
569
|
-
|
570
|
-
|
571
|
-
|
572
|
-
|
562
|
+
0, 0, 5, 0, 0, 0, 0, 5,
|
563
|
+
0, 0, 0, 87, 0, 89, 0, 91,
|
564
|
+
0, 93, 0, 95, 0, 97, 0, 99,
|
565
|
+
0, 101, 0, 103, 0, 105, 0, 107,
|
566
|
+
0, 109, 0, 111, 0, 113, 0, 115,
|
567
|
+
0, 117, 0, 119, 0, 121, 0, 123,
|
568
|
+
0, 125, 0, 127, 0, 129, 0, 131,
|
569
|
+
0, 133, 0, 135, 0, 137, 0, 139,
|
570
|
+
0, 141, 157, 0, 0, 0, 145, 0,
|
571
|
+
0, 0, 0, 5, 5, 155, 0, 0,
|
572
|
+
0, 0, 0, 143, 0, 0, 0, 0,
|
573
|
+
0, 0, 0, 0, 0, 183, 0, 5,
|
573
574
|
175, 169, 167, 177, 181, 0, 5, 0,
|
574
575
|
0, 235, 0, 0, 0, 159, 161, 197,
|
575
576
|
187, 0, 199, 0, 195, 0, 0, 189,
|
576
577
|
163, 193, 5, 185, 0, 179, 209, 165,
|
577
|
-
191, 226, 0, 229, 0, 0, 232,
|
578
|
-
|
579
|
-
|
580
|
-
|
581
|
-
|
578
|
+
191, 226, 0, 229, 0, 0, 232, 214,
|
579
|
+
7, 9, 13, 73, 223, 220, 79, 0,
|
580
|
+
0, 75, 77, 147, 0, 5, 5, 5,
|
581
|
+
5, 5, 5, 5, 5, 151, 153, 0,
|
582
|
+
0, 0, 149, 0, 0, 0, 0, 0
|
582
583
|
]
|
583
584
|
|
584
585
|
class << self
|
585
|
-
attr_accessor :
|
586
|
-
private :
|
586
|
+
attr_accessor :_scanner_to_state_actions
|
587
|
+
private :_scanner_to_state_actions, :_scanner_to_state_actions=
|
587
588
|
end
|
588
|
-
self.
|
589
|
+
self._scanner_to_state_actions = [
|
589
590
|
0, 0, 0, 0, 0, 0, 0, 0,
|
590
591
|
0, 0, 0, 0, 0, 0, 0, 0,
|
591
592
|
0, 0, 0, 0, 0, 0, 0, 0,
|
@@ -616,24 +617,24 @@ self._proc_scanner_to_state_actions = [
|
|
616
617
|
0, 0, 0, 0, 0, 0, 0, 0,
|
617
618
|
1, 0, 0, 0, 0, 0, 0, 0,
|
618
619
|
0, 0, 0, 0, 0, 0, 0, 0,
|
619
|
-
0, 0,
|
620
|
-
|
621
|
-
0, 211, 0, 1, 0, 1, 0, 0,
|
620
|
+
0, 0, 211, 0, 211, 0, 1, 0,
|
621
|
+
1, 0, 0, 0, 0, 0, 0, 0,
|
622
622
|
0, 0, 0, 0, 0, 0, 0, 0,
|
623
623
|
0, 0, 0, 0, 0, 0, 0, 0,
|
624
624
|
0, 0, 0, 0, 0, 0, 0, 0,
|
625
|
-
0, 0, 0, 0, 0, 1, 1, 1,
|
626
625
|
1, 1, 1, 1, 1, 1, 1, 1,
|
627
626
|
1, 1, 1, 1, 1, 1, 1, 1,
|
628
627
|
1, 1, 1, 1, 1, 1, 1, 1,
|
629
|
-
1
|
628
|
+
1, 1, 1, 1, 1, 0, 0, 0,
|
629
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
630
|
+
0
|
630
631
|
]
|
631
632
|
|
632
633
|
class << self
|
633
|
-
attr_accessor :
|
634
|
-
private :
|
634
|
+
attr_accessor :_scanner_from_state_actions
|
635
|
+
private :_scanner_from_state_actions, :_scanner_from_state_actions=
|
635
636
|
end
|
636
|
-
self.
|
637
|
+
self._scanner_from_state_actions = [
|
637
638
|
0, 0, 0, 0, 0, 0, 0, 0,
|
638
639
|
0, 0, 0, 0, 0, 0, 0, 0,
|
639
640
|
0, 0, 0, 0, 0, 0, 0, 0,
|
@@ -664,239 +665,239 @@ self._proc_scanner_from_state_actions = [
|
|
664
665
|
0, 0, 0, 0, 0, 0, 0, 0,
|
665
666
|
3, 0, 0, 0, 0, 0, 0, 0,
|
666
667
|
0, 0, 0, 0, 0, 0, 0, 0,
|
667
|
-
0, 0, 3, 0,
|
668
|
-
|
669
|
-
0, 3, 0, 3, 0, 3, 0, 0,
|
668
|
+
0, 0, 3, 0, 3, 0, 3, 0,
|
669
|
+
3, 0, 0, 0, 0, 0, 0, 0,
|
670
670
|
0, 0, 0, 0, 0, 0, 0, 0,
|
671
671
|
0, 0, 0, 0, 0, 0, 0, 0,
|
672
672
|
0, 0, 0, 0, 0, 0, 0, 0,
|
673
|
-
0, 0, 0, 0, 0, 3, 3, 3,
|
674
673
|
3, 3, 3, 3, 3, 3, 3, 3,
|
675
674
|
3, 3, 3, 3, 3, 3, 3, 3,
|
676
675
|
3, 3, 3, 3, 3, 3, 3, 3,
|
677
|
-
3
|
676
|
+
3, 3, 3, 3, 3, 0, 0, 0,
|
677
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
678
|
+
0
|
678
679
|
]
|
679
680
|
|
680
681
|
class << self
|
681
|
-
attr_accessor :
|
682
|
-
private :
|
682
|
+
attr_accessor :_scanner_eof_trans
|
683
|
+
private :_scanner_eof_trans, :_scanner_eof_trans=
|
683
684
|
end
|
684
|
-
self.
|
685
|
+
self._scanner_eof_trans = [
|
685
686
|
0, 1, 1, 1, 1, 1, 1, 8,
|
686
687
|
8, 11, 11, 11, 11, 11, 11, 11,
|
687
|
-
11, 20, 22, 22, 22, 22, 22,
|
688
|
-
|
689
|
-
|
690
|
-
|
691
|
-
|
692
|
-
|
693
|
-
|
694
|
-
|
695
|
-
|
696
|
-
|
697
|
-
|
698
|
-
|
699
|
-
|
700
|
-
|
701
|
-
|
702
|
-
|
703
|
-
|
704
|
-
|
705
|
-
|
706
|
-
|
707
|
-
|
708
|
-
|
709
|
-
|
710
|
-
|
711
|
-
|
712
|
-
|
688
|
+
11, 20, 22, 22, 22, 22, 22, 0,
|
689
|
+
0, 33, 33, 33, 33, 33, 94, 94,
|
690
|
+
33, 33, 33, 94, 94, 33, 33, 33,
|
691
|
+
94, 94, 33, 33, 33, 94, 94, 33,
|
692
|
+
33, 33, 94, 94, 33, 33, 33, 94,
|
693
|
+
94, 122, 122, 122, 94, 94, 33, 33,
|
694
|
+
33, 94, 94, 33, 33, 33, 94, 94,
|
695
|
+
33, 33, 33, 94, 94, 33, 33, 33,
|
696
|
+
94, 94, 33, 33, 33, 94, 94, 33,
|
697
|
+
33, 33, 94, 94, 33, 33, 33, 94,
|
698
|
+
94, 33, 33, 33, 94, 94, 33, 33,
|
699
|
+
33, 94, 94, 33, 33, 33, 94, 94,
|
700
|
+
33, 33, 33, 94, 94, 33, 33, 33,
|
701
|
+
94, 94, 33, 33, 33, 94, 94, 33,
|
702
|
+
33, 33, 94, 94, 33, 33, 94, 94,
|
703
|
+
94, 94, 33, 33, 33, 94, 94, 33,
|
704
|
+
33, 33, 94, 94, 33, 33, 33, 94,
|
705
|
+
94, 33, 33, 33, 94, 94, 33, 33,
|
706
|
+
33, 94, 94, 33, 33, 33, 94, 94,
|
707
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
708
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
709
|
+
0, 0, 0, 0, 0, 0, 0, 0,
|
710
|
+
0, 0, 0, 0, 291, 291, 291, 291,
|
711
|
+
291, 291, 291, 291, 291, 291, 302, 302,
|
712
|
+
302, 291, 291, 291, 291, 291, 291, 291,
|
713
|
+
291, 291, 291, 291, 291, 291, 291, 291,
|
713
714
|
0, 336, 337, 339, 341, 341, 339, 344,
|
714
715
|
346, 348, 339, 351, 353, 353, 353, 353,
|
715
|
-
353, 353, 0,
|
716
|
-
|
717
|
-
|
718
|
-
|
719
|
-
|
720
|
-
391, 391, 391, 391, 391, 391, 391, 391,
|
721
|
-
391, 391, 391, 391, 392, 0, 0, 0,
|
716
|
+
353, 353, 0, 361, 0, 362, 0, 363,
|
717
|
+
0, 367, 370, 370, 370, 370, 370, 370,
|
718
|
+
370, 370, 370, 370, 370, 370, 370, 370,
|
719
|
+
370, 370, 370, 370, 370, 370, 370, 370,
|
720
|
+
370, 370, 370, 370, 370, 370, 370, 371,
|
722
721
|
0, 0, 0, 0, 0, 0, 0, 0,
|
723
722
|
0, 0, 0, 0, 0, 0, 0, 0,
|
724
723
|
0, 0, 0, 0, 0, 0, 0, 0,
|
725
|
-
0
|
724
|
+
0, 0, 0, 0, 0, 382, 383, 383,
|
725
|
+
387, 387, 387, 383, 383, 383, 383, 383,
|
726
|
+
383
|
726
727
|
]
|
727
728
|
|
728
729
|
class << self
|
729
|
-
attr_accessor :
|
730
|
+
attr_accessor :scanner_start
|
730
731
|
end
|
731
|
-
self.
|
732
|
+
self.scanner_start = 224;
|
732
733
|
class << self
|
733
|
-
attr_accessor :
|
734
|
+
attr_accessor :scanner_first_final
|
734
735
|
end
|
735
|
-
self.
|
736
|
+
self.scanner_first_final = 224;
|
736
737
|
class << self
|
737
|
-
attr_accessor :
|
738
|
+
attr_accessor :scanner_error
|
738
739
|
end
|
739
|
-
self.
|
740
|
+
self.scanner_error = 0;
|
740
741
|
|
741
742
|
class << self
|
742
|
-
attr_accessor :
|
743
|
+
attr_accessor :scanner_en_per_line_comment
|
743
744
|
end
|
744
|
-
self.
|
745
|
+
self.scanner_en_per_line_comment = 242;
|
745
746
|
class << self
|
746
|
-
attr_accessor :
|
747
|
+
attr_accessor :scanner_en_block_comment
|
747
748
|
end
|
748
|
-
self.
|
749
|
+
self.scanner_en_block_comment = 244;
|
749
750
|
class << self
|
750
|
-
attr_accessor :
|
751
|
+
attr_accessor :scanner_en_heredoc
|
751
752
|
end
|
752
|
-
self.
|
753
|
+
self.scanner_en_heredoc = 246;
|
753
754
|
class << self
|
754
|
-
attr_accessor :
|
755
|
+
attr_accessor :scanner_en_string
|
755
756
|
end
|
756
|
-
self.
|
757
|
+
self.scanner_en_string = 248;
|
757
758
|
class << self
|
758
|
-
attr_accessor :
|
759
|
+
attr_accessor :scanner_en_dstring1
|
759
760
|
end
|
760
|
-
self.
|
761
|
+
self.scanner_en_dstring1 = 280;
|
761
762
|
class << self
|
762
|
-
attr_accessor :
|
763
|
+
attr_accessor :scanner_en_dstring2
|
763
764
|
end
|
764
|
-
self.
|
765
|
+
self.scanner_en_dstring2 = 281;
|
765
766
|
class << self
|
766
|
-
attr_accessor :
|
767
|
+
attr_accessor :scanner_en_dstring3
|
767
768
|
end
|
768
|
-
self.
|
769
|
+
self.scanner_en_dstring3 = 282;
|
769
770
|
class << self
|
770
|
-
attr_accessor :
|
771
|
+
attr_accessor :scanner_en_dstring4
|
771
772
|
end
|
772
|
-
self.
|
773
|
+
self.scanner_en_dstring4 = 283;
|
773
774
|
class << self
|
774
|
-
attr_accessor :
|
775
|
+
attr_accessor :scanner_en_dstring5
|
775
776
|
end
|
776
|
-
self.
|
777
|
+
self.scanner_en_dstring5 = 284;
|
777
778
|
class << self
|
778
|
-
attr_accessor :
|
779
|
+
attr_accessor :scanner_en_dstring6
|
779
780
|
end
|
780
|
-
self.
|
781
|
+
self.scanner_en_dstring6 = 285;
|
781
782
|
class << self
|
782
|
-
attr_accessor :
|
783
|
+
attr_accessor :scanner_en_dstring7
|
783
784
|
end
|
784
|
-
self.
|
785
|
+
self.scanner_en_dstring7 = 286;
|
785
786
|
class << self
|
786
|
-
attr_accessor :
|
787
|
+
attr_accessor :scanner_en_dstring8
|
787
788
|
end
|
788
|
-
self.
|
789
|
+
self.scanner_en_dstring8 = 287;
|
789
790
|
class << self
|
790
|
-
attr_accessor :
|
791
|
+
attr_accessor :scanner_en_dstring9
|
791
792
|
end
|
792
|
-
self.
|
793
|
+
self.scanner_en_dstring9 = 288;
|
793
794
|
class << self
|
794
|
-
attr_accessor :
|
795
|
+
attr_accessor :scanner_en_dstring10
|
795
796
|
end
|
796
|
-
self.
|
797
|
+
self.scanner_en_dstring10 = 289;
|
797
798
|
class << self
|
798
|
-
attr_accessor :
|
799
|
+
attr_accessor :scanner_en_dstring11
|
799
800
|
end
|
800
|
-
self.
|
801
|
+
self.scanner_en_dstring11 = 290;
|
801
802
|
class << self
|
802
|
-
attr_accessor :
|
803
|
+
attr_accessor :scanner_en_dstring12
|
803
804
|
end
|
804
|
-
self.
|
805
|
+
self.scanner_en_dstring12 = 291;
|
805
806
|
class << self
|
806
|
-
attr_accessor :
|
807
|
+
attr_accessor :scanner_en_dstring13
|
807
808
|
end
|
808
|
-
self.
|
809
|
+
self.scanner_en_dstring13 = 292;
|
809
810
|
class << self
|
810
|
-
attr_accessor :
|
811
|
+
attr_accessor :scanner_en_dstring14
|
811
812
|
end
|
812
|
-
self.
|
813
|
+
self.scanner_en_dstring14 = 293;
|
813
814
|
class << self
|
814
|
-
attr_accessor :
|
815
|
+
attr_accessor :scanner_en_dstring15
|
815
816
|
end
|
816
|
-
self.
|
817
|
+
self.scanner_en_dstring15 = 294;
|
817
818
|
class << self
|
818
|
-
attr_accessor :
|
819
|
+
attr_accessor :scanner_en_dstring16
|
819
820
|
end
|
820
|
-
self.
|
821
|
+
self.scanner_en_dstring16 = 295;
|
821
822
|
class << self
|
822
|
-
attr_accessor :
|
823
|
+
attr_accessor :scanner_en_dstring17
|
823
824
|
end
|
824
|
-
self.
|
825
|
+
self.scanner_en_dstring17 = 296;
|
825
826
|
class << self
|
826
|
-
attr_accessor :
|
827
|
+
attr_accessor :scanner_en_dstring18
|
827
828
|
end
|
828
|
-
self.
|
829
|
+
self.scanner_en_dstring18 = 297;
|
829
830
|
class << self
|
830
|
-
attr_accessor :
|
831
|
+
attr_accessor :scanner_en_dstring19
|
831
832
|
end
|
832
|
-
self.
|
833
|
+
self.scanner_en_dstring19 = 298;
|
833
834
|
class << self
|
834
|
-
attr_accessor :
|
835
|
+
attr_accessor :scanner_en_dstring20
|
835
836
|
end
|
836
|
-
self.
|
837
|
+
self.scanner_en_dstring20 = 299;
|
837
838
|
class << self
|
838
|
-
attr_accessor :
|
839
|
+
attr_accessor :scanner_en_dstring21
|
839
840
|
end
|
840
|
-
self.
|
841
|
+
self.scanner_en_dstring21 = 300;
|
841
842
|
class << self
|
842
|
-
attr_accessor :
|
843
|
+
attr_accessor :scanner_en_dstring22
|
843
844
|
end
|
844
|
-
self.
|
845
|
+
self.scanner_en_dstring22 = 301;
|
845
846
|
class << self
|
846
|
-
attr_accessor :
|
847
|
+
attr_accessor :scanner_en_dstring23
|
847
848
|
end
|
848
|
-
self.
|
849
|
+
self.scanner_en_dstring23 = 302;
|
849
850
|
class << self
|
850
|
-
attr_accessor :
|
851
|
+
attr_accessor :scanner_en_dstring24
|
851
852
|
end
|
852
|
-
self.
|
853
|
+
self.scanner_en_dstring24 = 303;
|
853
854
|
class << self
|
854
|
-
attr_accessor :
|
855
|
+
attr_accessor :scanner_en_dstring25
|
855
856
|
end
|
856
|
-
self.
|
857
|
+
self.scanner_en_dstring25 = 304;
|
857
858
|
class << self
|
858
|
-
attr_accessor :
|
859
|
+
attr_accessor :scanner_en_dstring26
|
859
860
|
end
|
860
|
-
self.
|
861
|
+
self.scanner_en_dstring26 = 305;
|
861
862
|
class << self
|
862
|
-
attr_accessor :
|
863
|
+
attr_accessor :scanner_en_dstring27
|
863
864
|
end
|
864
|
-
self.
|
865
|
+
self.scanner_en_dstring27 = 306;
|
865
866
|
class << self
|
866
|
-
attr_accessor :
|
867
|
+
attr_accessor :scanner_en_dstring28
|
867
868
|
end
|
868
|
-
self.
|
869
|
+
self.scanner_en_dstring28 = 307;
|
869
870
|
class << self
|
870
|
-
attr_accessor :
|
871
|
+
attr_accessor :scanner_en_new_statement
|
871
872
|
end
|
872
|
-
self.
|
873
|
+
self.scanner_en_new_statement = 308;
|
873
874
|
class << self
|
874
|
-
attr_accessor :
|
875
|
+
attr_accessor :scanner_en_main
|
875
876
|
end
|
876
|
-
self.
|
877
|
+
self.scanner_en_main = 224;
|
877
878
|
|
878
879
|
|
879
|
-
# line
|
880
|
+
# line 136 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
880
881
|
|
881
|
-
|
882
|
+
extend Extensions
|
882
883
|
|
883
|
-
|
884
|
-
|
885
|
-
|
886
|
-
|
887
|
-
# line 2 "/home/ty.archlinux/dev/ty/sourcify/
|
884
|
+
def self.execute!
|
885
|
+
data = @data
|
886
|
+
eof = data.length
|
887
|
+
|
888
|
+
# line 2 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rb"
|
888
889
|
begin
|
889
890
|
p ||= 0
|
890
891
|
pe ||= data.length
|
891
|
-
cs =
|
892
|
+
cs = scanner_start
|
892
893
|
ts = nil
|
893
894
|
te = nil
|
894
895
|
act = 0
|
895
896
|
end
|
896
897
|
|
897
|
-
# line
|
898
|
-
|
899
|
-
# line 2 "/home/ty.archlinux/dev/ty/sourcify/
|
898
|
+
# line 143 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
899
|
+
|
900
|
+
# line 2 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rb"
|
900
901
|
begin
|
901
902
|
_klen, _trans, _keys, _acts, _nacts = nil
|
902
903
|
_goto_level = 0
|
@@ -918,27 +919,27 @@ begin
|
|
918
919
|
end
|
919
920
|
end
|
920
921
|
if _goto_level <= _resume
|
921
|
-
_acts =
|
922
|
-
_nacts =
|
922
|
+
_acts = _scanner_from_state_actions[cs]
|
923
|
+
_nacts = _scanner_actions[_acts]
|
923
924
|
_acts += 1
|
924
925
|
while _nacts > 0
|
925
926
|
_nacts -= 1
|
926
927
|
_acts += 1
|
927
|
-
case
|
928
|
+
case _scanner_actions[_acts - 1]
|
928
929
|
when 2 then
|
929
930
|
# line 1 "NONE"
|
930
931
|
begin
|
931
932
|
ts = p
|
932
933
|
end
|
933
|
-
# line 2 "/home/ty.archlinux/dev/ty/sourcify/
|
934
|
+
# line 2 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rb"
|
934
935
|
end # from state action switch
|
935
936
|
end
|
936
937
|
if _trigger_goto
|
937
938
|
next
|
938
939
|
end
|
939
|
-
_keys =
|
940
|
-
_trans =
|
941
|
-
_klen =
|
940
|
+
_keys = _scanner_key_offsets[cs]
|
941
|
+
_trans = _scanner_index_offsets[cs]
|
942
|
+
_klen = _scanner_single_lengths[cs]
|
942
943
|
_break_match = false
|
943
944
|
|
944
945
|
begin
|
@@ -950,9 +951,9 @@ ts = p
|
|
950
951
|
break if _upper < _lower
|
951
952
|
_mid = _lower + ( (_upper - _lower) >> 1 )
|
952
953
|
|
953
|
-
if data[p] <
|
954
|
+
if data[p] < _scanner_trans_keys[_mid]
|
954
955
|
_upper = _mid - 1
|
955
|
-
elsif data[p] >
|
956
|
+
elsif data[p] > _scanner_trans_keys[_mid]
|
956
957
|
_lower = _mid + 1
|
957
958
|
else
|
958
959
|
_trans += (_mid - _keys)
|
@@ -964,16 +965,16 @@ ts = p
|
|
964
965
|
_keys += _klen
|
965
966
|
_trans += _klen
|
966
967
|
end
|
967
|
-
_klen =
|
968
|
+
_klen = _scanner_range_lengths[cs]
|
968
969
|
if _klen > 0
|
969
970
|
_lower = _keys
|
970
971
|
_upper = _keys + (_klen << 1) - 2
|
971
972
|
loop do
|
972
973
|
break if _upper < _lower
|
973
974
|
_mid = _lower + (((_upper-_lower) >> 1) & ~1)
|
974
|
-
if data[p] <
|
975
|
+
if data[p] < _scanner_trans_keys[_mid]
|
975
976
|
_upper = _mid - 2
|
976
|
-
elsif data[p] >
|
977
|
+
elsif data[p] > _scanner_trans_keys[_mid+1]
|
977
978
|
_lower = _mid + 2
|
978
979
|
else
|
979
980
|
_trans += ((_mid - _keys) >> 1)
|
@@ -985,134 +986,28 @@ ts = p
|
|
985
986
|
_trans += _klen
|
986
987
|
end
|
987
988
|
end while false
|
988
|
-
_trans =
|
989
|
+
_trans = _scanner_indicies[_trans]
|
989
990
|
end
|
990
991
|
if _goto_level <= _eof_trans
|
991
|
-
cs =
|
992
|
-
if
|
993
|
-
_acts =
|
994
|
-
_nacts =
|
992
|
+
cs = _scanner_trans_targs[_trans]
|
993
|
+
if _scanner_trans_actions[_trans] != 0
|
994
|
+
_acts = _scanner_trans_actions[_trans]
|
995
|
+
_nacts = _scanner_actions[_acts]
|
995
996
|
_acts += 1
|
996
997
|
while _nacts > 0
|
997
998
|
_nacts -= 1
|
998
999
|
_acts += 1
|
999
|
-
case
|
1000
|
+
case _scanner_actions[_acts - 1]
|
1000
1001
|
when 3 then
|
1001
1002
|
# line 1 "NONE"
|
1002
1003
|
begin
|
1003
1004
|
te = p+1
|
1004
1005
|
end
|
1005
1006
|
when 4 then
|
1006
|
-
# line
|
1007
|
+
# line 7 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1007
1008
|
begin
|
1008
|
-
|
1009
|
-
begin
|
1010
|
-
push(:kw_do_alias2, ts, te)
|
1011
|
-
increment_counter(:do_end, 0..1)
|
1012
|
-
begin
|
1013
|
-
cs = 224
|
1014
|
-
_trigger_goto = true
|
1015
|
-
_goto_level = _again
|
1016
|
-
break
|
1017
|
-
end
|
1018
|
-
|
1019
|
-
end
|
1020
|
-
end
|
1009
|
+
act = 1; end
|
1021
1010
|
when 5 then
|
1022
|
-
# line 56 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
|
1023
|
-
begin
|
1024
|
-
te = p+1
|
1025
|
-
begin
|
1026
|
-
push(:kw_do_alias1, ts, te)
|
1027
|
-
increment_counter(:do_end, 1)
|
1028
|
-
begin
|
1029
|
-
cs = 224
|
1030
|
-
_trigger_goto = true
|
1031
|
-
_goto_level = _again
|
1032
|
-
break
|
1033
|
-
end
|
1034
|
-
|
1035
|
-
end
|
1036
|
-
end
|
1037
|
-
when 6 then
|
1038
|
-
# line 63 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
|
1039
|
-
begin
|
1040
|
-
te = p+1
|
1041
|
-
begin p = p - 1; begin
|
1042
|
-
cs = 224
|
1043
|
-
_trigger_goto = true
|
1044
|
-
_goto_level = _again
|
1045
|
-
break
|
1046
|
-
end
|
1047
|
-
end
|
1048
|
-
end
|
1049
|
-
when 7 then
|
1050
|
-
# line 56 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
|
1051
|
-
begin
|
1052
|
-
te = p
|
1053
|
-
p = p - 1; begin
|
1054
|
-
push(:kw_do_alias1, ts, te)
|
1055
|
-
increment_counter(:do_end, 1)
|
1056
|
-
begin
|
1057
|
-
cs = 224
|
1058
|
-
_trigger_goto = true
|
1059
|
-
_goto_level = _again
|
1060
|
-
break
|
1061
|
-
end
|
1062
|
-
|
1063
|
-
end
|
1064
|
-
end
|
1065
|
-
when 8 then
|
1066
|
-
# line 62 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
|
1067
|
-
begin
|
1068
|
-
te = p
|
1069
|
-
p = p - 1; begin push(:space, ts, te) end
|
1070
|
-
end
|
1071
|
-
when 9 then
|
1072
|
-
# line 63 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
|
1073
|
-
begin
|
1074
|
-
te = p
|
1075
|
-
p = p - 1; begin p = p - 1; begin
|
1076
|
-
cs = 224
|
1077
|
-
_trigger_goto = true
|
1078
|
-
_goto_level = _again
|
1079
|
-
break
|
1080
|
-
end
|
1081
|
-
end
|
1082
|
-
end
|
1083
|
-
when 10 then
|
1084
|
-
# line 56 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
|
1085
|
-
begin
|
1086
|
-
begin p = ((te))-1; end
|
1087
|
-
begin
|
1088
|
-
push(:kw_do_alias1, ts, te)
|
1089
|
-
increment_counter(:do_end, 1)
|
1090
|
-
begin
|
1091
|
-
cs = 224
|
1092
|
-
_trigger_goto = true
|
1093
|
-
_goto_level = _again
|
1094
|
-
break
|
1095
|
-
end
|
1096
|
-
|
1097
|
-
end
|
1098
|
-
end
|
1099
|
-
when 11 then
|
1100
|
-
# line 63 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
|
1101
|
-
begin
|
1102
|
-
begin p = ((te))-1; end
|
1103
|
-
begin p = p - 1; begin
|
1104
|
-
cs = 224
|
1105
|
-
_trigger_goto = true
|
1106
|
-
_goto_level = _again
|
1107
|
-
break
|
1108
|
-
end
|
1109
|
-
end
|
1110
|
-
end
|
1111
|
-
when 12 then
|
1112
|
-
# line 69 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
|
1113
|
-
begin
|
1114
|
-
act = 5; end
|
1115
|
-
when 13 then
|
1116
1011
|
# line 1 "NONE"
|
1117
1012
|
begin
|
1118
1013
|
case act
|
@@ -1124,7 +1019,7 @@ when 13 then
|
|
1124
1019
|
break
|
1125
1020
|
end
|
1126
1021
|
end
|
1127
|
-
when
|
1022
|
+
when 1 then
|
1128
1023
|
begin begin p = ((te))-1; end
|
1129
1024
|
|
1130
1025
|
push(:comment, ts.pred, te)
|
@@ -1138,12 +1033,12 @@ end
|
|
1138
1033
|
end
|
1139
1034
|
end
|
1140
1035
|
end
|
1141
|
-
when
|
1142
|
-
# line
|
1036
|
+
when 6 then
|
1037
|
+
# line 16 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1143
1038
|
begin
|
1144
|
-
act =
|
1145
|
-
when
|
1146
|
-
# line
|
1039
|
+
act = 2; end
|
1040
|
+
when 7 then
|
1041
|
+
# line 16 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1147
1042
|
begin
|
1148
1043
|
te = p
|
1149
1044
|
p = p - 1; begin
|
@@ -1158,7 +1053,7 @@ p = p - 1; begin
|
|
1158
1053
|
end
|
1159
1054
|
end
|
1160
1055
|
end
|
1161
|
-
when
|
1056
|
+
when 8 then
|
1162
1057
|
# line 1 "NONE"
|
1163
1058
|
begin
|
1164
1059
|
case act
|
@@ -1170,7 +1065,7 @@ when 16 then
|
|
1170
1065
|
break
|
1171
1066
|
end
|
1172
1067
|
end
|
1173
|
-
when
|
1068
|
+
when 2 then
|
1174
1069
|
begin begin p = ((te))-1; end
|
1175
1070
|
|
1176
1071
|
unless push_comment(ts, te)
|
@@ -1185,8 +1080,8 @@ end
|
|
1185
1080
|
end
|
1186
1081
|
end
|
1187
1082
|
end
|
1188
|
-
when
|
1189
|
-
# line
|
1083
|
+
when 9 then
|
1084
|
+
# line 26 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1190
1085
|
begin
|
1191
1086
|
te = p
|
1192
1087
|
p = p - 1; begin
|
@@ -1201,16 +1096,16 @@ p = p - 1; begin
|
|
1201
1096
|
end
|
1202
1097
|
end
|
1203
1098
|
end
|
1204
|
-
when
|
1205
|
-
# line
|
1099
|
+
when 10 then
|
1100
|
+
# line 83 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1206
1101
|
begin
|
1207
|
-
act =
|
1208
|
-
when
|
1209
|
-
# line
|
1102
|
+
act = 6; end
|
1103
|
+
when 11 then
|
1104
|
+
# line 112 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1210
1105
|
begin
|
1211
|
-
act =
|
1212
|
-
when
|
1213
|
-
# line
|
1106
|
+
act = 33; end
|
1107
|
+
when 12 then
|
1108
|
+
# line 76 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1214
1109
|
begin
|
1215
1110
|
te = p+1
|
1216
1111
|
begin
|
@@ -1224,344 +1119,344 @@ te = p+1
|
|
1224
1119
|
|
1225
1120
|
end
|
1226
1121
|
end
|
1227
|
-
when
|
1228
|
-
# line
|
1122
|
+
when 13 then
|
1123
|
+
# line 82 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1229
1124
|
begin
|
1230
1125
|
te = p+1
|
1231
1126
|
begin push_dstring(ts, te); begin
|
1232
|
-
cs =
|
1127
|
+
cs = 280
|
1233
1128
|
_trigger_goto = true
|
1234
1129
|
_goto_level = _again
|
1235
1130
|
break
|
1236
1131
|
end
|
1237
1132
|
end
|
1238
1133
|
end
|
1239
|
-
when
|
1240
|
-
# line
|
1134
|
+
when 14 then
|
1135
|
+
# line 83 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1241
1136
|
begin
|
1242
1137
|
te = p+1
|
1243
1138
|
begin push_dstring(ts, te); begin
|
1244
|
-
cs =
|
1139
|
+
cs = 281
|
1245
1140
|
_trigger_goto = true
|
1246
1141
|
_goto_level = _again
|
1247
1142
|
break
|
1248
1143
|
end
|
1249
1144
|
end
|
1250
1145
|
end
|
1251
|
-
when
|
1252
|
-
# line
|
1146
|
+
when 15 then
|
1147
|
+
# line 84 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1253
1148
|
begin
|
1254
1149
|
te = p+1
|
1255
1150
|
begin push_dstring(ts, te); begin
|
1256
|
-
cs =
|
1151
|
+
cs = 282
|
1257
1152
|
_trigger_goto = true
|
1258
1153
|
_goto_level = _again
|
1259
1154
|
break
|
1260
1155
|
end
|
1261
1156
|
end
|
1262
1157
|
end
|
1263
|
-
when
|
1264
|
-
# line
|
1158
|
+
when 16 then
|
1159
|
+
# line 85 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1265
1160
|
begin
|
1266
1161
|
te = p+1
|
1267
1162
|
begin push_dstring(ts, te); begin
|
1268
|
-
cs =
|
1163
|
+
cs = 283
|
1269
1164
|
_trigger_goto = true
|
1270
1165
|
_goto_level = _again
|
1271
1166
|
break
|
1272
1167
|
end
|
1273
1168
|
end
|
1274
1169
|
end
|
1275
|
-
when
|
1276
|
-
# line
|
1170
|
+
when 17 then
|
1171
|
+
# line 86 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1277
1172
|
begin
|
1278
1173
|
te = p+1
|
1279
1174
|
begin push_dstring(ts, te); begin
|
1280
|
-
cs =
|
1175
|
+
cs = 284
|
1281
1176
|
_trigger_goto = true
|
1282
1177
|
_goto_level = _again
|
1283
1178
|
break
|
1284
1179
|
end
|
1285
1180
|
end
|
1286
1181
|
end
|
1287
|
-
when
|
1288
|
-
# line
|
1182
|
+
when 18 then
|
1183
|
+
# line 87 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1289
1184
|
begin
|
1290
1185
|
te = p+1
|
1291
1186
|
begin push_dstring(ts, te); begin
|
1292
|
-
cs =
|
1187
|
+
cs = 285
|
1293
1188
|
_trigger_goto = true
|
1294
1189
|
_goto_level = _again
|
1295
1190
|
break
|
1296
1191
|
end
|
1297
1192
|
end
|
1298
1193
|
end
|
1299
|
-
when
|
1300
|
-
# line
|
1194
|
+
when 19 then
|
1195
|
+
# line 88 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1301
1196
|
begin
|
1302
1197
|
te = p+1
|
1303
1198
|
begin push_dstring(ts, te); begin
|
1304
|
-
cs =
|
1199
|
+
cs = 286
|
1305
1200
|
_trigger_goto = true
|
1306
1201
|
_goto_level = _again
|
1307
1202
|
break
|
1308
1203
|
end
|
1309
1204
|
end
|
1310
1205
|
end
|
1311
|
-
when
|
1312
|
-
# line
|
1206
|
+
when 20 then
|
1207
|
+
# line 89 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1313
1208
|
begin
|
1314
1209
|
te = p+1
|
1315
1210
|
begin push_dstring(ts, te); begin
|
1316
|
-
cs =
|
1211
|
+
cs = 287
|
1317
1212
|
_trigger_goto = true
|
1318
1213
|
_goto_level = _again
|
1319
1214
|
break
|
1320
1215
|
end
|
1321
1216
|
end
|
1322
1217
|
end
|
1323
|
-
when
|
1324
|
-
# line
|
1218
|
+
when 21 then
|
1219
|
+
# line 90 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1325
1220
|
begin
|
1326
1221
|
te = p+1
|
1327
1222
|
begin push_dstring(ts, te); begin
|
1328
|
-
cs =
|
1223
|
+
cs = 288
|
1329
1224
|
_trigger_goto = true
|
1330
1225
|
_goto_level = _again
|
1331
1226
|
break
|
1332
1227
|
end
|
1333
1228
|
end
|
1334
1229
|
end
|
1335
|
-
when
|
1336
|
-
# line
|
1230
|
+
when 22 then
|
1231
|
+
# line 91 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1337
1232
|
begin
|
1338
1233
|
te = p+1
|
1339
1234
|
begin push_dstring(ts, te); begin
|
1340
|
-
cs =
|
1235
|
+
cs = 289
|
1341
1236
|
_trigger_goto = true
|
1342
1237
|
_goto_level = _again
|
1343
1238
|
break
|
1344
1239
|
end
|
1345
1240
|
end
|
1346
1241
|
end
|
1347
|
-
when
|
1348
|
-
# line
|
1242
|
+
when 23 then
|
1243
|
+
# line 92 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1349
1244
|
begin
|
1350
1245
|
te = p+1
|
1351
1246
|
begin push_dstring(ts, te); begin
|
1352
|
-
cs =
|
1247
|
+
cs = 290
|
1353
1248
|
_trigger_goto = true
|
1354
1249
|
_goto_level = _again
|
1355
1250
|
break
|
1356
1251
|
end
|
1357
1252
|
end
|
1358
1253
|
end
|
1359
|
-
when
|
1360
|
-
# line
|
1254
|
+
when 24 then
|
1255
|
+
# line 93 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1361
1256
|
begin
|
1362
1257
|
te = p+1
|
1363
1258
|
begin push_dstring(ts, te); begin
|
1364
|
-
cs =
|
1259
|
+
cs = 291
|
1365
1260
|
_trigger_goto = true
|
1366
1261
|
_goto_level = _again
|
1367
1262
|
break
|
1368
1263
|
end
|
1369
1264
|
end
|
1370
1265
|
end
|
1371
|
-
when
|
1372
|
-
# line
|
1266
|
+
when 25 then
|
1267
|
+
# line 94 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1373
1268
|
begin
|
1374
1269
|
te = p+1
|
1375
1270
|
begin push_dstring(ts, te); begin
|
1376
|
-
cs =
|
1271
|
+
cs = 292
|
1377
1272
|
_trigger_goto = true
|
1378
1273
|
_goto_level = _again
|
1379
1274
|
break
|
1380
1275
|
end
|
1381
1276
|
end
|
1382
1277
|
end
|
1383
|
-
when
|
1384
|
-
# line
|
1278
|
+
when 26 then
|
1279
|
+
# line 95 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1385
1280
|
begin
|
1386
1281
|
te = p+1
|
1387
1282
|
begin push_dstring(ts, te); begin
|
1388
|
-
cs =
|
1283
|
+
cs = 293
|
1389
1284
|
_trigger_goto = true
|
1390
1285
|
_goto_level = _again
|
1391
1286
|
break
|
1392
1287
|
end
|
1393
1288
|
end
|
1394
1289
|
end
|
1395
|
-
when
|
1396
|
-
# line
|
1290
|
+
when 27 then
|
1291
|
+
# line 96 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1397
1292
|
begin
|
1398
1293
|
te = p+1
|
1399
1294
|
begin push_dstring(ts, te); begin
|
1400
|
-
cs =
|
1295
|
+
cs = 294
|
1401
1296
|
_trigger_goto = true
|
1402
1297
|
_goto_level = _again
|
1403
1298
|
break
|
1404
1299
|
end
|
1405
1300
|
end
|
1406
1301
|
end
|
1407
|
-
when
|
1408
|
-
# line
|
1302
|
+
when 28 then
|
1303
|
+
# line 97 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1409
1304
|
begin
|
1410
1305
|
te = p+1
|
1411
1306
|
begin push_dstring(ts, te); begin
|
1412
|
-
cs =
|
1307
|
+
cs = 295
|
1413
1308
|
_trigger_goto = true
|
1414
1309
|
_goto_level = _again
|
1415
1310
|
break
|
1416
1311
|
end
|
1417
1312
|
end
|
1418
1313
|
end
|
1419
|
-
when
|
1420
|
-
# line
|
1314
|
+
when 29 then
|
1315
|
+
# line 98 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1421
1316
|
begin
|
1422
1317
|
te = p+1
|
1423
1318
|
begin push_dstring(ts, te); begin
|
1424
|
-
cs =
|
1319
|
+
cs = 296
|
1425
1320
|
_trigger_goto = true
|
1426
1321
|
_goto_level = _again
|
1427
1322
|
break
|
1428
1323
|
end
|
1429
1324
|
end
|
1430
1325
|
end
|
1431
|
-
when
|
1432
|
-
# line
|
1326
|
+
when 30 then
|
1327
|
+
# line 99 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1433
1328
|
begin
|
1434
1329
|
te = p+1
|
1435
1330
|
begin push_dstring(ts, te); begin
|
1436
|
-
cs =
|
1331
|
+
cs = 297
|
1437
1332
|
_trigger_goto = true
|
1438
1333
|
_goto_level = _again
|
1439
1334
|
break
|
1440
1335
|
end
|
1441
1336
|
end
|
1442
1337
|
end
|
1443
|
-
when
|
1444
|
-
# line
|
1338
|
+
when 31 then
|
1339
|
+
# line 100 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1445
1340
|
begin
|
1446
1341
|
te = p+1
|
1447
1342
|
begin push_dstring(ts, te); begin
|
1448
|
-
cs =
|
1343
|
+
cs = 298
|
1449
1344
|
_trigger_goto = true
|
1450
1345
|
_goto_level = _again
|
1451
1346
|
break
|
1452
1347
|
end
|
1453
1348
|
end
|
1454
1349
|
end
|
1455
|
-
when
|
1456
|
-
# line
|
1350
|
+
when 32 then
|
1351
|
+
# line 101 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1457
1352
|
begin
|
1458
1353
|
te = p+1
|
1459
1354
|
begin push_dstring(ts, te); begin
|
1460
|
-
cs =
|
1355
|
+
cs = 299
|
1461
1356
|
_trigger_goto = true
|
1462
1357
|
_goto_level = _again
|
1463
1358
|
break
|
1464
1359
|
end
|
1465
1360
|
end
|
1466
1361
|
end
|
1467
|
-
when
|
1468
|
-
# line
|
1362
|
+
when 33 then
|
1363
|
+
# line 102 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1469
1364
|
begin
|
1470
1365
|
te = p+1
|
1471
1366
|
begin push_dstring(ts, te); begin
|
1472
|
-
cs =
|
1367
|
+
cs = 300
|
1473
1368
|
_trigger_goto = true
|
1474
1369
|
_goto_level = _again
|
1475
1370
|
break
|
1476
1371
|
end
|
1477
1372
|
end
|
1478
1373
|
end
|
1479
|
-
when
|
1480
|
-
# line
|
1374
|
+
when 34 then
|
1375
|
+
# line 103 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1481
1376
|
begin
|
1482
1377
|
te = p+1
|
1483
1378
|
begin push_dstring(ts, te); begin
|
1484
|
-
cs =
|
1379
|
+
cs = 301
|
1485
1380
|
_trigger_goto = true
|
1486
1381
|
_goto_level = _again
|
1487
1382
|
break
|
1488
1383
|
end
|
1489
1384
|
end
|
1490
1385
|
end
|
1491
|
-
when
|
1492
|
-
# line
|
1386
|
+
when 35 then
|
1387
|
+
# line 104 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1493
1388
|
begin
|
1494
1389
|
te = p+1
|
1495
1390
|
begin push_dstring(ts, te); begin
|
1496
|
-
cs =
|
1391
|
+
cs = 302
|
1497
1392
|
_trigger_goto = true
|
1498
1393
|
_goto_level = _again
|
1499
1394
|
break
|
1500
1395
|
end
|
1501
1396
|
end
|
1502
1397
|
end
|
1503
|
-
when
|
1504
|
-
# line
|
1398
|
+
when 36 then
|
1399
|
+
# line 105 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1505
1400
|
begin
|
1506
1401
|
te = p+1
|
1507
1402
|
begin push_dstring(ts, te); begin
|
1508
|
-
cs =
|
1403
|
+
cs = 303
|
1509
1404
|
_trigger_goto = true
|
1510
1405
|
_goto_level = _again
|
1511
1406
|
break
|
1512
1407
|
end
|
1513
1408
|
end
|
1514
1409
|
end
|
1515
|
-
when
|
1516
|
-
# line
|
1410
|
+
when 37 then
|
1411
|
+
# line 106 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1517
1412
|
begin
|
1518
1413
|
te = p+1
|
1519
1414
|
begin push_dstring(ts, te); begin
|
1520
|
-
cs =
|
1415
|
+
cs = 304
|
1521
1416
|
_trigger_goto = true
|
1522
1417
|
_goto_level = _again
|
1523
1418
|
break
|
1524
1419
|
end
|
1525
1420
|
end
|
1526
1421
|
end
|
1527
|
-
when
|
1528
|
-
# line
|
1422
|
+
when 38 then
|
1423
|
+
# line 107 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1529
1424
|
begin
|
1530
1425
|
te = p+1
|
1531
1426
|
begin push_dstring(ts, te); begin
|
1532
|
-
cs =
|
1427
|
+
cs = 305
|
1533
1428
|
_trigger_goto = true
|
1534
1429
|
_goto_level = _again
|
1535
1430
|
break
|
1536
1431
|
end
|
1537
1432
|
end
|
1538
1433
|
end
|
1539
|
-
when
|
1540
|
-
# line
|
1434
|
+
when 39 then
|
1435
|
+
# line 108 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1541
1436
|
begin
|
1542
1437
|
te = p+1
|
1543
1438
|
begin push_dstring(ts, te); begin
|
1544
|
-
cs =
|
1439
|
+
cs = 306
|
1545
1440
|
_trigger_goto = true
|
1546
1441
|
_goto_level = _again
|
1547
1442
|
break
|
1548
1443
|
end
|
1549
1444
|
end
|
1550
1445
|
end
|
1551
|
-
when
|
1552
|
-
# line
|
1446
|
+
when 40 then
|
1447
|
+
# line 109 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1553
1448
|
begin
|
1554
1449
|
te = p+1
|
1555
1450
|
begin push_dstring(ts, te); begin
|
1556
|
-
cs =
|
1451
|
+
cs = 307
|
1557
1452
|
_trigger_goto = true
|
1558
1453
|
_goto_level = _again
|
1559
1454
|
break
|
1560
1455
|
end
|
1561
1456
|
end
|
1562
1457
|
end
|
1563
|
-
when
|
1564
|
-
# line
|
1458
|
+
when 41 then
|
1459
|
+
# line 112 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1565
1460
|
begin
|
1566
1461
|
te = p+1
|
1567
1462
|
begin
|
@@ -1575,8 +1470,8 @@ te = p+1
|
|
1575
1470
|
|
1576
1471
|
end
|
1577
1472
|
end
|
1578
|
-
when
|
1579
|
-
# line
|
1473
|
+
when 42 then
|
1474
|
+
# line 76 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1580
1475
|
begin
|
1581
1476
|
te = p
|
1582
1477
|
p = p - 1; begin
|
@@ -1590,20 +1485,20 @@ p = p - 1; begin
|
|
1590
1485
|
|
1591
1486
|
end
|
1592
1487
|
end
|
1593
|
-
when
|
1594
|
-
# line
|
1488
|
+
when 43 then
|
1489
|
+
# line 83 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1595
1490
|
begin
|
1596
1491
|
te = p
|
1597
1492
|
p = p - 1; begin push_dstring(ts, te); begin
|
1598
|
-
cs =
|
1493
|
+
cs = 281
|
1599
1494
|
_trigger_goto = true
|
1600
1495
|
_goto_level = _again
|
1601
1496
|
break
|
1602
1497
|
end
|
1603
1498
|
end
|
1604
1499
|
end
|
1605
|
-
when
|
1606
|
-
# line
|
1500
|
+
when 44 then
|
1501
|
+
# line 112 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1607
1502
|
begin
|
1608
1503
|
te = p
|
1609
1504
|
p = p - 1; begin
|
@@ -1617,8 +1512,8 @@ p = p - 1; begin
|
|
1617
1512
|
|
1618
1513
|
end
|
1619
1514
|
end
|
1620
|
-
when
|
1621
|
-
# line
|
1515
|
+
when 45 then
|
1516
|
+
# line 76 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1622
1517
|
begin
|
1623
1518
|
begin p = ((te))-1; end
|
1624
1519
|
begin
|
@@ -1632,8 +1527,8 @@ when 53 then
|
|
1632
1527
|
|
1633
1528
|
end
|
1634
1529
|
end
|
1635
|
-
when
|
1636
|
-
# line
|
1530
|
+
when 46 then
|
1531
|
+
# line 112 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1637
1532
|
begin
|
1638
1533
|
begin p = ((te))-1; end
|
1639
1534
|
begin
|
@@ -1647,20 +1542,20 @@ when 54 then
|
|
1647
1542
|
|
1648
1543
|
end
|
1649
1544
|
end
|
1650
|
-
when
|
1545
|
+
when 47 then
|
1651
1546
|
# line 1 "NONE"
|
1652
1547
|
begin
|
1653
1548
|
case act
|
1654
|
-
when
|
1549
|
+
when 6 then
|
1655
1550
|
begin begin p = ((te))-1; end
|
1656
1551
|
push_dstring(ts, te); begin
|
1657
|
-
cs =
|
1552
|
+
cs = 281
|
1658
1553
|
_trigger_goto = true
|
1659
1554
|
_goto_level = _again
|
1660
1555
|
break
|
1661
1556
|
end
|
1662
1557
|
end
|
1663
|
-
when
|
1558
|
+
when 33 then
|
1664
1559
|
begin begin p = ((te))-1; end
|
1665
1560
|
|
1666
1561
|
push(:any, ts, te)
|
@@ -1674,8 +1569,8 @@ when 55 then
|
|
1674
1569
|
end
|
1675
1570
|
end
|
1676
1571
|
end
|
1677
|
-
when
|
1678
|
-
# line
|
1572
|
+
when 48 then
|
1573
|
+
# line 121 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1679
1574
|
begin
|
1680
1575
|
te = p+1
|
1681
1576
|
begin
|
@@ -1690,8 +1585,8 @@ te = p+1
|
|
1690
1585
|
end
|
1691
1586
|
end
|
1692
1587
|
end
|
1693
|
-
when
|
1694
|
-
# line
|
1588
|
+
when 49 then
|
1589
|
+
# line 128 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1695
1590
|
begin
|
1696
1591
|
te = p+1
|
1697
1592
|
begin
|
@@ -1706,8 +1601,8 @@ te = p+1
|
|
1706
1601
|
end
|
1707
1602
|
end
|
1708
1603
|
end
|
1709
|
-
when
|
1710
|
-
# line
|
1604
|
+
when 50 then
|
1605
|
+
# line 135 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1711
1606
|
begin
|
1712
1607
|
te = p+1
|
1713
1608
|
begin
|
@@ -1722,8 +1617,8 @@ te = p+1
|
|
1722
1617
|
end
|
1723
1618
|
end
|
1724
1619
|
end
|
1725
|
-
when
|
1726
|
-
# line
|
1620
|
+
when 51 then
|
1621
|
+
# line 142 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1727
1622
|
begin
|
1728
1623
|
te = p+1
|
1729
1624
|
begin
|
@@ -1738,8 +1633,8 @@ te = p+1
|
|
1738
1633
|
end
|
1739
1634
|
end
|
1740
1635
|
end
|
1741
|
-
when
|
1742
|
-
# line
|
1636
|
+
when 52 then
|
1637
|
+
# line 149 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1743
1638
|
begin
|
1744
1639
|
te = p+1
|
1745
1640
|
begin
|
@@ -1754,8 +1649,8 @@ te = p+1
|
|
1754
1649
|
end
|
1755
1650
|
end
|
1756
1651
|
end
|
1757
|
-
when
|
1758
|
-
# line
|
1652
|
+
when 53 then
|
1653
|
+
# line 156 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1759
1654
|
begin
|
1760
1655
|
te = p+1
|
1761
1656
|
begin
|
@@ -1770,8 +1665,8 @@ te = p+1
|
|
1770
1665
|
end
|
1771
1666
|
end
|
1772
1667
|
end
|
1773
|
-
when
|
1774
|
-
# line
|
1668
|
+
when 54 then
|
1669
|
+
# line 163 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1775
1670
|
begin
|
1776
1671
|
te = p+1
|
1777
1672
|
begin
|
@@ -1786,8 +1681,8 @@ te = p+1
|
|
1786
1681
|
end
|
1787
1682
|
end
|
1788
1683
|
end
|
1789
|
-
when
|
1790
|
-
# line
|
1684
|
+
when 55 then
|
1685
|
+
# line 170 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1791
1686
|
begin
|
1792
1687
|
te = p+1
|
1793
1688
|
begin
|
@@ -1802,8 +1697,8 @@ te = p+1
|
|
1802
1697
|
end
|
1803
1698
|
end
|
1804
1699
|
end
|
1805
|
-
when
|
1806
|
-
# line
|
1700
|
+
when 56 then
|
1701
|
+
# line 177 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1807
1702
|
begin
|
1808
1703
|
te = p+1
|
1809
1704
|
begin
|
@@ -1818,8 +1713,8 @@ te = p+1
|
|
1818
1713
|
end
|
1819
1714
|
end
|
1820
1715
|
end
|
1821
|
-
when
|
1822
|
-
# line
|
1716
|
+
when 57 then
|
1717
|
+
# line 184 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1823
1718
|
begin
|
1824
1719
|
te = p+1
|
1825
1720
|
begin
|
@@ -1834,8 +1729,8 @@ te = p+1
|
|
1834
1729
|
end
|
1835
1730
|
end
|
1836
1731
|
end
|
1837
|
-
when
|
1838
|
-
# line
|
1732
|
+
when 58 then
|
1733
|
+
# line 191 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1839
1734
|
begin
|
1840
1735
|
te = p+1
|
1841
1736
|
begin
|
@@ -1850,8 +1745,8 @@ te = p+1
|
|
1850
1745
|
end
|
1851
1746
|
end
|
1852
1747
|
end
|
1853
|
-
when
|
1854
|
-
# line
|
1748
|
+
when 59 then
|
1749
|
+
# line 198 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1855
1750
|
begin
|
1856
1751
|
te = p+1
|
1857
1752
|
begin
|
@@ -1866,8 +1761,8 @@ te = p+1
|
|
1866
1761
|
end
|
1867
1762
|
end
|
1868
1763
|
end
|
1869
|
-
when
|
1870
|
-
# line
|
1764
|
+
when 60 then
|
1765
|
+
# line 205 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1871
1766
|
begin
|
1872
1767
|
te = p+1
|
1873
1768
|
begin
|
@@ -1882,8 +1777,8 @@ te = p+1
|
|
1882
1777
|
end
|
1883
1778
|
end
|
1884
1779
|
end
|
1885
|
-
when
|
1886
|
-
# line
|
1780
|
+
when 61 then
|
1781
|
+
# line 212 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1887
1782
|
begin
|
1888
1783
|
te = p+1
|
1889
1784
|
begin
|
@@ -1898,8 +1793,8 @@ te = p+1
|
|
1898
1793
|
end
|
1899
1794
|
end
|
1900
1795
|
end
|
1901
|
-
when
|
1902
|
-
# line
|
1796
|
+
when 62 then
|
1797
|
+
# line 219 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1903
1798
|
begin
|
1904
1799
|
te = p+1
|
1905
1800
|
begin
|
@@ -1914,8 +1809,8 @@ te = p+1
|
|
1914
1809
|
end
|
1915
1810
|
end
|
1916
1811
|
end
|
1917
|
-
when
|
1918
|
-
# line
|
1812
|
+
when 63 then
|
1813
|
+
# line 226 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1919
1814
|
begin
|
1920
1815
|
te = p+1
|
1921
1816
|
begin
|
@@ -1930,8 +1825,8 @@ te = p+1
|
|
1930
1825
|
end
|
1931
1826
|
end
|
1932
1827
|
end
|
1933
|
-
when
|
1934
|
-
# line
|
1828
|
+
when 64 then
|
1829
|
+
# line 233 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1935
1830
|
begin
|
1936
1831
|
te = p+1
|
1937
1832
|
begin
|
@@ -1946,8 +1841,8 @@ te = p+1
|
|
1946
1841
|
end
|
1947
1842
|
end
|
1948
1843
|
end
|
1949
|
-
when
|
1950
|
-
# line
|
1844
|
+
when 65 then
|
1845
|
+
# line 240 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1951
1846
|
begin
|
1952
1847
|
te = p+1
|
1953
1848
|
begin
|
@@ -1962,8 +1857,8 @@ te = p+1
|
|
1962
1857
|
end
|
1963
1858
|
end
|
1964
1859
|
end
|
1965
|
-
when
|
1966
|
-
# line
|
1860
|
+
when 66 then
|
1861
|
+
# line 247 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1967
1862
|
begin
|
1968
1863
|
te = p+1
|
1969
1864
|
begin
|
@@ -1978,8 +1873,8 @@ te = p+1
|
|
1978
1873
|
end
|
1979
1874
|
end
|
1980
1875
|
end
|
1981
|
-
when
|
1982
|
-
# line
|
1876
|
+
when 67 then
|
1877
|
+
# line 254 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1983
1878
|
begin
|
1984
1879
|
te = p+1
|
1985
1880
|
begin
|
@@ -1994,8 +1889,8 @@ te = p+1
|
|
1994
1889
|
end
|
1995
1890
|
end
|
1996
1891
|
end
|
1997
|
-
when
|
1998
|
-
# line
|
1892
|
+
when 68 then
|
1893
|
+
# line 261 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
1999
1894
|
begin
|
2000
1895
|
te = p+1
|
2001
1896
|
begin
|
@@ -2010,8 +1905,8 @@ te = p+1
|
|
2010
1905
|
end
|
2011
1906
|
end
|
2012
1907
|
end
|
2013
|
-
when
|
2014
|
-
# line
|
1908
|
+
when 69 then
|
1909
|
+
# line 268 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
2015
1910
|
begin
|
2016
1911
|
te = p+1
|
2017
1912
|
begin
|
@@ -2026,8 +1921,8 @@ te = p+1
|
|
2026
1921
|
end
|
2027
1922
|
end
|
2028
1923
|
end
|
2029
|
-
when
|
2030
|
-
# line
|
1924
|
+
when 70 then
|
1925
|
+
# line 275 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
2031
1926
|
begin
|
2032
1927
|
te = p+1
|
2033
1928
|
begin
|
@@ -2042,8 +1937,8 @@ te = p+1
|
|
2042
1937
|
end
|
2043
1938
|
end
|
2044
1939
|
end
|
2045
|
-
when
|
2046
|
-
# line
|
1940
|
+
when 71 then
|
1941
|
+
# line 282 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
2047
1942
|
begin
|
2048
1943
|
te = p+1
|
2049
1944
|
begin
|
@@ -2058,8 +1953,8 @@ te = p+1
|
|
2058
1953
|
end
|
2059
1954
|
end
|
2060
1955
|
end
|
2061
|
-
when
|
2062
|
-
# line
|
1956
|
+
when 72 then
|
1957
|
+
# line 289 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
2063
1958
|
begin
|
2064
1959
|
te = p+1
|
2065
1960
|
begin
|
@@ -2074,8 +1969,8 @@ te = p+1
|
|
2074
1969
|
end
|
2075
1970
|
end
|
2076
1971
|
end
|
2077
|
-
when
|
2078
|
-
# line
|
1972
|
+
when 73 then
|
1973
|
+
# line 296 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
2079
1974
|
begin
|
2080
1975
|
te = p+1
|
2081
1976
|
begin
|
@@ -2090,8 +1985,8 @@ te = p+1
|
|
2090
1985
|
end
|
2091
1986
|
end
|
2092
1987
|
end
|
2093
|
-
when
|
2094
|
-
# line
|
1988
|
+
when 74 then
|
1989
|
+
# line 303 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
2095
1990
|
begin
|
2096
1991
|
te = p+1
|
2097
1992
|
begin
|
@@ -2106,8 +2001,8 @@ te = p+1
|
|
2106
2001
|
end
|
2107
2002
|
end
|
2108
2003
|
end
|
2109
|
-
when
|
2110
|
-
# line
|
2004
|
+
when 75 then
|
2005
|
+
# line 310 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
|
2111
2006
|
begin
|
2112
2007
|
te = p+1
|
2113
2008
|
begin
|
@@ -2122,24 +2017,130 @@ te = p+1
|
|
2122
2017
|
end
|
2123
2018
|
end
|
2124
2019
|
end
|
2020
|
+
when 76 then
|
2021
|
+
# line 17 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2022
|
+
begin
|
2023
|
+
te = p+1
|
2024
|
+
begin
|
2025
|
+
push(:kw_do_alias2, ts, te)
|
2026
|
+
increment_counter(:do_end, 0..1)
|
2027
|
+
begin
|
2028
|
+
cs = 224
|
2029
|
+
_trigger_goto = true
|
2030
|
+
_goto_level = _again
|
2031
|
+
break
|
2032
|
+
end
|
2033
|
+
|
2034
|
+
end
|
2035
|
+
end
|
2036
|
+
when 77 then
|
2037
|
+
# line 26 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2038
|
+
begin
|
2039
|
+
te = p+1
|
2040
|
+
begin
|
2041
|
+
push(:kw_do_alias1, ts, te)
|
2042
|
+
increment_counter(:do_end, 1)
|
2043
|
+
begin
|
2044
|
+
cs = 224
|
2045
|
+
_trigger_goto = true
|
2046
|
+
_goto_level = _again
|
2047
|
+
break
|
2048
|
+
end
|
2049
|
+
|
2050
|
+
end
|
2051
|
+
end
|
2052
|
+
when 78 then
|
2053
|
+
# line 33 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2054
|
+
begin
|
2055
|
+
te = p+1
|
2056
|
+
begin p = p - 1; begin
|
2057
|
+
cs = 224
|
2058
|
+
_trigger_goto = true
|
2059
|
+
_goto_level = _again
|
2060
|
+
break
|
2061
|
+
end
|
2062
|
+
end
|
2063
|
+
end
|
2064
|
+
when 79 then
|
2065
|
+
# line 26 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2066
|
+
begin
|
2067
|
+
te = p
|
2068
|
+
p = p - 1; begin
|
2069
|
+
push(:kw_do_alias1, ts, te)
|
2070
|
+
increment_counter(:do_end, 1)
|
2071
|
+
begin
|
2072
|
+
cs = 224
|
2073
|
+
_trigger_goto = true
|
2074
|
+
_goto_level = _again
|
2075
|
+
break
|
2076
|
+
end
|
2077
|
+
|
2078
|
+
end
|
2079
|
+
end
|
2080
|
+
when 80 then
|
2081
|
+
# line 32 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2082
|
+
begin
|
2083
|
+
te = p
|
2084
|
+
p = p - 1; begin push(:space, ts, te) end
|
2085
|
+
end
|
2086
|
+
when 81 then
|
2087
|
+
# line 33 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2088
|
+
begin
|
2089
|
+
te = p
|
2090
|
+
p = p - 1; begin p = p - 1; begin
|
2091
|
+
cs = 224
|
2092
|
+
_trigger_goto = true
|
2093
|
+
_goto_level = _again
|
2094
|
+
break
|
2095
|
+
end
|
2096
|
+
end
|
2097
|
+
end
|
2098
|
+
when 82 then
|
2099
|
+
# line 26 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2100
|
+
begin
|
2101
|
+
begin p = ((te))-1; end
|
2102
|
+
begin
|
2103
|
+
push(:kw_do_alias1, ts, te)
|
2104
|
+
increment_counter(:do_end, 1)
|
2105
|
+
begin
|
2106
|
+
cs = 224
|
2107
|
+
_trigger_goto = true
|
2108
|
+
_goto_level = _again
|
2109
|
+
break
|
2110
|
+
end
|
2111
|
+
|
2112
|
+
end
|
2113
|
+
end
|
2114
|
+
when 83 then
|
2115
|
+
# line 33 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2116
|
+
begin
|
2117
|
+
begin p = ((te))-1; end
|
2118
|
+
begin p = p - 1; begin
|
2119
|
+
cs = 224
|
2120
|
+
_trigger_goto = true
|
2121
|
+
_goto_level = _again
|
2122
|
+
break
|
2123
|
+
end
|
2124
|
+
end
|
2125
|
+
end
|
2125
2126
|
when 84 then
|
2126
|
-
# line
|
2127
|
+
# line 43 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2127
2128
|
begin
|
2128
2129
|
act = 66; end
|
2129
2130
|
when 85 then
|
2130
|
-
# line
|
2131
|
+
# line 49 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2131
2132
|
begin
|
2132
2133
|
act = 67; end
|
2133
2134
|
when 86 then
|
2134
|
-
# line
|
2135
|
+
# line 84 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2135
2136
|
begin
|
2136
2137
|
act = 73; end
|
2137
2138
|
when 87 then
|
2138
|
-
# line
|
2139
|
+
# line 123 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2139
2140
|
begin
|
2140
2141
|
act = 79; end
|
2141
2142
|
when 88 then
|
2142
|
-
# line
|
2143
|
+
# line 56 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2143
2144
|
begin
|
2144
2145
|
te = p+1
|
2145
2146
|
begin
|
@@ -2148,7 +2149,7 @@ te = p+1
|
|
2148
2149
|
end
|
2149
2150
|
end
|
2150
2151
|
when 89 then
|
2151
|
-
# line
|
2152
|
+
# line 61 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2152
2153
|
begin
|
2153
2154
|
te = p+1
|
2154
2155
|
begin
|
@@ -2157,7 +2158,7 @@ te = p+1
|
|
2157
2158
|
end
|
2158
2159
|
end
|
2159
2160
|
when 90 then
|
2160
|
-
# line
|
2161
|
+
# line 66 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2161
2162
|
begin
|
2162
2163
|
te = p+1
|
2163
2164
|
begin
|
@@ -2166,7 +2167,7 @@ te = p+1
|
|
2166
2167
|
end
|
2167
2168
|
end
|
2168
2169
|
when 91 then
|
2169
|
-
# line
|
2170
|
+
# line 71 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2170
2171
|
begin
|
2171
2172
|
te = p+1
|
2172
2173
|
begin
|
@@ -2175,13 +2176,13 @@ te = p+1
|
|
2175
2176
|
end
|
2176
2177
|
end
|
2177
2178
|
when 92 then
|
2178
|
-
# line
|
2179
|
+
# line 84 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2179
2180
|
begin
|
2180
2181
|
te = p+1
|
2181
2182
|
begin
|
2182
2183
|
push(:newline_alias, ts, te)
|
2183
2184
|
begin
|
2184
|
-
cs =
|
2185
|
+
cs = 308
|
2185
2186
|
_trigger_goto = true
|
2186
2187
|
_goto_level = _again
|
2187
2188
|
break
|
@@ -2190,12 +2191,12 @@ te = p+1
|
|
2190
2191
|
end
|
2191
2192
|
end
|
2192
2193
|
when 93 then
|
2193
|
-
# line
|
2194
|
+
# line 91 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2194
2195
|
begin
|
2195
2196
|
te = p+1
|
2196
2197
|
begin
|
2197
2198
|
begin
|
2198
|
-
cs =
|
2199
|
+
cs = 242
|
2199
2200
|
_trigger_goto = true
|
2200
2201
|
_goto_level = _again
|
2201
2202
|
break
|
@@ -2204,14 +2205,14 @@ te = p+1
|
|
2204
2205
|
end
|
2205
2206
|
end
|
2206
2207
|
when 94 then
|
2207
|
-
# line
|
2208
|
+
# line 95 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2208
2209
|
begin
|
2209
2210
|
te = p+1
|
2210
2211
|
begin
|
2211
2212
|
push_comment(ts, te)
|
2212
2213
|
increment_lineno
|
2213
2214
|
begin
|
2214
|
-
cs =
|
2215
|
+
cs = 244
|
2215
2216
|
_trigger_goto = true
|
2216
2217
|
_goto_level = _again
|
2217
2218
|
break
|
@@ -2220,14 +2221,14 @@ te = p+1
|
|
2220
2221
|
end
|
2221
2222
|
end
|
2222
2223
|
when 95 then
|
2223
|
-
# line
|
2224
|
+
# line 103 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2224
2225
|
begin
|
2225
2226
|
te = p+1
|
2226
2227
|
begin
|
2227
2228
|
push_heredoc(ts, te)
|
2228
2229
|
increment_lineno
|
2229
2230
|
begin
|
2230
|
-
cs =
|
2231
|
+
cs = 246
|
2231
2232
|
_trigger_goto = true
|
2232
2233
|
_goto_level = _again
|
2233
2234
|
break
|
@@ -2236,12 +2237,12 @@ te = p+1
|
|
2236
2237
|
end
|
2237
2238
|
end
|
2238
2239
|
when 96 then
|
2239
|
-
# line
|
2240
|
+
# line 109 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2240
2241
|
begin
|
2241
2242
|
te = p+1
|
2242
2243
|
begin
|
2243
2244
|
p = p - 1; begin
|
2244
|
-
cs =
|
2245
|
+
cs = 248
|
2245
2246
|
_trigger_goto = true
|
2246
2247
|
_goto_level = _again
|
2247
2248
|
break
|
@@ -2250,7 +2251,7 @@ te = p+1
|
|
2250
2251
|
end
|
2251
2252
|
end
|
2252
2253
|
when 97 then
|
2253
|
-
# line
|
2254
|
+
# line 113 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2254
2255
|
begin
|
2255
2256
|
te = p+1
|
2256
2257
|
begin
|
@@ -2258,7 +2259,7 @@ te = p+1
|
|
2258
2259
|
push(:op, ts, te)
|
2259
2260
|
else
|
2260
2261
|
p = p - 1; begin
|
2261
|
-
cs =
|
2262
|
+
cs = 248
|
2262
2263
|
_trigger_goto = true
|
2263
2264
|
_goto_level = _again
|
2264
2265
|
break
|
@@ -2268,25 +2269,25 @@ te = p+1
|
|
2268
2269
|
end
|
2269
2270
|
end
|
2270
2271
|
when 98 then
|
2271
|
-
# line
|
2272
|
+
# line 124 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2272
2273
|
begin
|
2273
2274
|
te = p+1
|
2274
2275
|
begin push(:bslash, ts, te) end
|
2275
2276
|
end
|
2276
2277
|
when 99 then
|
2277
|
-
# line
|
2278
|
+
# line 128 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2278
2279
|
begin
|
2279
2280
|
te = p+1
|
2280
2281
|
begin push(:digit, ts, te) end
|
2281
2282
|
end
|
2282
2283
|
when 100 then
|
2283
|
-
# line
|
2284
|
+
# line 130 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2284
2285
|
begin
|
2285
2286
|
te = p+1
|
2286
2287
|
begin push(:any, ts, te) end
|
2287
2288
|
end
|
2288
2289
|
when 101 then
|
2289
|
-
# line
|
2290
|
+
# line 71 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2290
2291
|
begin
|
2291
2292
|
te = p
|
2292
2293
|
p = p - 1; begin
|
@@ -2295,14 +2296,14 @@ p = p - 1; begin
|
|
2295
2296
|
end
|
2296
2297
|
end
|
2297
2298
|
when 102 then
|
2298
|
-
# line
|
2299
|
+
# line 78 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2299
2300
|
begin
|
2300
2301
|
te = p
|
2301
2302
|
p = p - 1; begin
|
2302
2303
|
push(:newline, ts, te)
|
2303
2304
|
increment_lineno
|
2304
2305
|
begin
|
2305
|
-
cs =
|
2306
|
+
cs = 308
|
2306
2307
|
_trigger_goto = true
|
2307
2308
|
_goto_level = _again
|
2308
2309
|
break
|
@@ -2311,13 +2312,13 @@ p = p - 1; begin
|
|
2311
2312
|
end
|
2312
2313
|
end
|
2313
2314
|
when 103 then
|
2314
|
-
# line
|
2315
|
+
# line 84 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2315
2316
|
begin
|
2316
2317
|
te = p
|
2317
2318
|
p = p - 1; begin
|
2318
2319
|
push(:newline_alias, ts, te)
|
2319
2320
|
begin
|
2320
|
-
cs =
|
2321
|
+
cs = 308
|
2321
2322
|
_trigger_goto = true
|
2322
2323
|
_goto_level = _again
|
2323
2324
|
break
|
@@ -2326,37 +2327,37 @@ p = p - 1; begin
|
|
2326
2327
|
end
|
2327
2328
|
end
|
2328
2329
|
when 104 then
|
2329
|
-
# line
|
2330
|
+
# line 123 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2330
2331
|
begin
|
2331
2332
|
te = p
|
2332
2333
|
p = p - 1; begin push(:var, ts, te) end
|
2333
2334
|
end
|
2334
2335
|
when 105 then
|
2335
|
-
# line
|
2336
|
+
# line 125 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2336
2337
|
begin
|
2337
2338
|
te = p
|
2338
2339
|
p = p - 1; begin push(:const, ts, te) end
|
2339
2340
|
end
|
2340
2341
|
when 106 then
|
2341
|
-
# line
|
2342
|
+
# line 126 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2342
2343
|
begin
|
2343
2344
|
te = p
|
2344
2345
|
p = p - 1; begin push(:symbol, ts, te) end
|
2345
2346
|
end
|
2346
2347
|
when 107 then
|
2347
|
-
# line
|
2348
|
+
# line 127 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2348
2349
|
begin
|
2349
2350
|
te = p
|
2350
2351
|
p = p - 1; begin push(:space, ts, te) end
|
2351
2352
|
end
|
2352
2353
|
when 108 then
|
2353
|
-
# line
|
2354
|
+
# line 130 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2354
2355
|
begin
|
2355
2356
|
te = p
|
2356
2357
|
p = p - 1; begin push(:any, ts, te) end
|
2357
2358
|
end
|
2358
2359
|
when 109 then
|
2359
|
-
# line
|
2360
|
+
# line 71 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2360
2361
|
begin
|
2361
2362
|
begin p = ((te))-1; end
|
2362
2363
|
begin
|
@@ -2365,14 +2366,14 @@ when 109 then
|
|
2365
2366
|
end
|
2366
2367
|
end
|
2367
2368
|
when 110 then
|
2368
|
-
# line
|
2369
|
+
# line 78 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2369
2370
|
begin
|
2370
2371
|
begin p = ((te))-1; end
|
2371
2372
|
begin
|
2372
2373
|
push(:newline, ts, te)
|
2373
2374
|
increment_lineno
|
2374
2375
|
begin
|
2375
|
-
cs =
|
2376
|
+
cs = 308
|
2376
2377
|
_trigger_goto = true
|
2377
2378
|
_goto_level = _again
|
2378
2379
|
break
|
@@ -2381,13 +2382,13 @@ when 110 then
|
|
2381
2382
|
end
|
2382
2383
|
end
|
2383
2384
|
when 111 then
|
2384
|
-
# line
|
2385
|
+
# line 126 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2385
2386
|
begin
|
2386
2387
|
begin p = ((te))-1; end
|
2387
2388
|
begin push(:symbol, ts, te) end
|
2388
2389
|
end
|
2389
2390
|
when 112 then
|
2390
|
-
# line
|
2391
|
+
# line 130 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2391
2392
|
begin
|
2392
2393
|
begin p = ((te))-1; end
|
2393
2394
|
begin push(:any, ts, te) end
|
@@ -2402,7 +2403,7 @@ when 113 then
|
|
2402
2403
|
push(:kw_do, ts, te)
|
2403
2404
|
increment_counter(:do_end)
|
2404
2405
|
begin
|
2405
|
-
cs =
|
2406
|
+
cs = 308
|
2406
2407
|
_trigger_goto = true
|
2407
2408
|
_goto_level = _again
|
2408
2409
|
break
|
@@ -2420,7 +2421,7 @@ when 113 then
|
|
2420
2421
|
|
2421
2422
|
push(:newline_alias, ts, te)
|
2422
2423
|
begin
|
2423
|
-
cs =
|
2424
|
+
cs = 308
|
2424
2425
|
_trigger_goto = true
|
2425
2426
|
_goto_level = _again
|
2426
2427
|
break
|
@@ -2432,7 +2433,7 @@ when 113 then
|
|
2432
2433
|
push(:var, ts, te) end
|
2433
2434
|
end
|
2434
2435
|
end
|
2435
|
-
# line 2 "/home/ty.archlinux/dev/ty/sourcify/
|
2436
|
+
# line 2 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rb"
|
2436
2437
|
end # action switch
|
2437
2438
|
end
|
2438
2439
|
end
|
@@ -2441,13 +2442,13 @@ end
|
|
2441
2442
|
end
|
2442
2443
|
end
|
2443
2444
|
if _goto_level <= _again
|
2444
|
-
_acts =
|
2445
|
-
_nacts =
|
2445
|
+
_acts = _scanner_to_state_actions[cs]
|
2446
|
+
_nacts = _scanner_actions[_acts]
|
2446
2447
|
_acts += 1
|
2447
2448
|
while _nacts > 0
|
2448
2449
|
_nacts -= 1
|
2449
2450
|
_acts += 1
|
2450
|
-
case
|
2451
|
+
case _scanner_actions[_acts - 1]
|
2451
2452
|
when 0 then
|
2452
2453
|
# line 1 "NONE"
|
2453
2454
|
begin
|
@@ -2457,7 +2458,7 @@ when 1 then
|
|
2457
2458
|
begin
|
2458
2459
|
act = 0
|
2459
2460
|
end
|
2460
|
-
# line 2 "/home/ty.archlinux/dev/ty/sourcify/
|
2461
|
+
# line 2 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rb"
|
2461
2462
|
end # to state action switch
|
2462
2463
|
end
|
2463
2464
|
if _trigger_goto
|
@@ -2475,8 +2476,8 @@ act = 0
|
|
2475
2476
|
end
|
2476
2477
|
if _goto_level <= _test_eof
|
2477
2478
|
if p == eof
|
2478
|
-
if
|
2479
|
-
_trans =
|
2479
|
+
if _scanner_eof_trans[cs] > 0
|
2480
|
+
_trans = _scanner_eof_trans[cs] - 1;
|
2480
2481
|
_goto_level = _eof_trans
|
2481
2482
|
next;
|
2482
2483
|
end
|
@@ -2488,9 +2489,10 @@ end
|
|
2488
2489
|
end
|
2489
2490
|
end
|
2490
2491
|
|
2491
|
-
# line
|
2492
|
-
|
2492
|
+
# line 144 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
|
2493
|
+
end
|
2493
2494
|
|
2495
|
+
end
|
2494
2496
|
end
|
2495
2497
|
end
|
2496
2498
|
end
|