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.
Files changed (130) hide show
  1. data/.gitignore +1 -0
  2. data/HISTORY.txt +5 -0
  3. data/README.rdoc +86 -3
  4. data/Rakefile +47 -15
  5. data/lib/sourcify.rb +13 -0
  6. data/lib/sourcify/common/parser/converter.rb +29 -0
  7. data/lib/sourcify/common/parser/raw_scanner/comment.rb +23 -0
  8. data/lib/sourcify/common/parser/raw_scanner/counter.rb +43 -0
  9. data/lib/sourcify/common/parser/raw_scanner/dstring.rb +60 -0
  10. data/lib/sourcify/common/parser/raw_scanner/extensions.rb +121 -0
  11. data/lib/sourcify/common/parser/raw_scanner/heredoc.rb +26 -0
  12. data/lib/sourcify/common/parser/source_code.rb +33 -0
  13. data/lib/sourcify/common/ragel/common.rl +5 -0
  14. data/lib/sourcify/common/ragel/expressions.rl +38 -0
  15. data/lib/sourcify/{proc/scanner.rl → common/ragel/machines.rl} +10 -178
  16. data/lib/sourcify/errors.rb +4 -0
  17. data/lib/sourcify/method.rb +134 -0
  18. data/lib/sourcify/method/methods.rb +3 -0
  19. data/lib/sourcify/method/methods/to_raw_source.rb +30 -0
  20. data/lib/sourcify/method/methods/to_sexp.rb +30 -0
  21. data/lib/sourcify/method/methods/to_source.rb +30 -0
  22. data/lib/sourcify/method/parser.rb +104 -0
  23. data/lib/sourcify/method/parser/converter.rb +8 -0
  24. data/lib/sourcify/method/parser/raw_scanner.rb +2494 -0
  25. data/lib/sourcify/method/parser/raw_scanner.rl +144 -0
  26. data/lib/sourcify/method/parser/raw_scanner_extensions.rb +64 -0
  27. data/lib/sourcify/method/parser/scanner.rb +48 -0
  28. data/lib/sourcify/method/parser/source_code.rb +8 -0
  29. data/lib/sourcify/proc.rb +0 -2
  30. data/lib/sourcify/proc/parser.rb +2 -5
  31. data/lib/sourcify/proc/parser/converter.rb +2 -23
  32. data/lib/sourcify/proc/{scanner.rb → parser/raw_scanner.rb} +808 -806
  33. data/lib/sourcify/proc/parser/raw_scanner.rl +149 -0
  34. data/lib/sourcify/proc/parser/raw_scanner_extensions.rb +72 -0
  35. data/lib/sourcify/proc/parser/{code_scanner.rb → scanner.rb} +9 -5
  36. data/lib/sourcify/proc/parser/source_code.rb +2 -27
  37. data/lib/sourcify/version.rb +1 -1
  38. data/spec/method/others_from_def_end_block_spec.rb +49 -0
  39. data/spec/method/others_from_define_method_spec.rb +62 -0
  40. data/spec/method/raw_scanner/block_comment_spec.rb +8 -0
  41. data/spec/method/raw_scanner/double_colons_spec.rb +8 -0
  42. data/spec/method/raw_scanner/double_quote_str_w_interpolation_spec.rb +8 -0
  43. data/spec/method/raw_scanner/double_quote_str_wo_interpolation_spec.rb +8 -0
  44. data/spec/method/raw_scanner/heredoc_w_indent_spec.rb +8 -0
  45. data/spec/method/raw_scanner/heredoc_wo_indent_spec.rb +8 -0
  46. data/spec/method/raw_scanner/kw_block_start_alias1_spec.rb +20 -0
  47. data/spec/method/raw_scanner/kw_block_start_alias2_spec.rb +20 -0
  48. data/spec/method/raw_scanner/per_line_comment_spec.rb +8 -0
  49. data/spec/method/raw_scanner/single_quote_str_spec.rb +8 -0
  50. data/spec/method/raw_scanner/slash_operator_spec.rb +8 -0
  51. data/spec/method/raw_scanner/spec_helper.rb +80 -0
  52. data/spec/method/spec_helper.rb +1 -0
  53. data/spec/method/to_raw_source_spec.rb +31 -0
  54. data/spec/method/to_raw_source_w_specified_strip_enclosure_spec.rb +148 -0
  55. data/spec/method/to_sexp_from_def_end_block_w_variables_spec.rb +46 -0
  56. data/spec/method/to_sexp_from_def_end_block_within_irb_spec.rb +38 -0
  57. data/spec/method/to_sexp_from_define_method_w_multi_blocks_and_specified_attached_to_spec.rb +56 -0
  58. data/spec/method/to_sexp_from_define_method_w_variables_spec.rb +52 -0
  59. data/spec/method/to_sexp_from_define_method_within_irb_spec.rb +42 -0
  60. data/spec/method/to_sexp_w_specified_strip_enclosure_spec.rb +74 -0
  61. data/spec/method/to_source_from_def_end_block_w_19_extras_spec.rb +23 -0
  62. data/spec/method/to_source_from_def_end_block_w_nested_begin_spec.rb +35 -0
  63. data/spec/method/to_source_from_def_end_block_w_nested_case_spec.rb +35 -0
  64. data/spec/method/to_source_from_def_end_block_w_nested_class_spec.rb +51 -0
  65. data/spec/method/to_source_from_def_end_block_w_nested_do_end_block_spec.rb +33 -0
  66. data/spec/method/to_source_from_def_end_block_w_nested_for_spec.rb +126 -0
  67. data/spec/method/to_source_from_def_end_block_w_nested_if_spec.rb +82 -0
  68. data/spec/method/to_source_from_def_end_block_w_nested_literal_keyword_spec.rb +141 -0
  69. data/spec/method/to_source_from_def_end_block_w_nested_method_spec.rb +33 -0
  70. data/spec/method/to_source_from_def_end_block_w_nested_module_spec.rb +59 -0
  71. data/spec/method/to_source_from_def_end_block_w_nested_unless_spec.rb +82 -0
  72. data/spec/method/to_source_from_def_end_block_w_nested_until_spec.rb +179 -0
  73. data/spec/method/to_source_from_def_end_block_w_nested_while_spec.rb +179 -0
  74. data/spec/method/to_source_from_def_end_block_w_singleton_method_spec.rb +19 -0
  75. data/spec/method/to_source_from_def_end_block_within_irb_spec.rb +30 -0
  76. data/spec/method/to_source_from_def_end_w_multi_blocks_and_many_matches_spec.rb +30 -0
  77. data/spec/method/to_source_from_def_end_w_multi_blocks_and_single_match_spec.rb +36 -0
  78. data/spec/method/to_source_from_define_method_w_braced_block_spec.rb +113 -0
  79. data/spec/method/to_source_from_define_method_w_do_end_block_spec.rb +145 -0
  80. data/spec/method/to_source_from_define_method_w_multi_blocks_and_many_matches_spec.rb +56 -0
  81. data/spec/method/to_source_from_define_method_w_multi_blocks_and_single_match_spec.rb +73 -0
  82. data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_attached_to_and_many_matches_spec.rb +36 -0
  83. data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_attached_to_and_no_match_spec.rb +36 -0
  84. data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_attached_to_and_single_match_spec.rb +28 -0
  85. data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_attached_to_spec.rb +103 -0
  86. data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_body_matcher_and_many_matches_spec.rb +36 -0
  87. data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_body_matcher_and_no_match_spec.rb +36 -0
  88. data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_body_matcher_and_single_match_spec.rb +28 -0
  89. data/spec/method/to_source_from_define_method_w_multi_blocks_and_specified_ignore_nested_spec.rb +36 -0
  90. data/spec/method/to_source_from_define_method_within_irb_spec.rb +32 -0
  91. data/spec/method/to_source_magic_file_var_spec.rb +176 -0
  92. data/spec/method/to_source_magic_line_var_spec.rb +298 -0
  93. data/spec/method/to_source_w_specified_strip_enclosure_spec.rb +39 -0
  94. data/spec/no_method/unsupported_platform_spec.rb +26 -0
  95. data/spec/proc/raw_scanner/block_comment_spec.rb +8 -0
  96. data/spec/proc/raw_scanner/double_colons_spec.rb +8 -0
  97. data/spec/proc/raw_scanner/double_quote_str_w_interpolation_spec.rb +8 -0
  98. data/spec/proc/raw_scanner/double_quote_str_wo_interpolation_spec.rb +8 -0
  99. data/spec/proc/raw_scanner/heredoc_w_indent_spec.rb +8 -0
  100. data/spec/proc/raw_scanner/heredoc_wo_indent_spec.rb +8 -0
  101. data/spec/proc/raw_scanner/kw_block_start_alias1_spec.rb +20 -0
  102. data/spec/proc/raw_scanner/kw_block_start_alias2_spec.rb +20 -0
  103. data/spec/proc/raw_scanner/per_line_comment_spec.rb +8 -0
  104. data/spec/proc/raw_scanner/single_quote_str_spec.rb +8 -0
  105. data/spec/proc/raw_scanner/slash_operator_spec.rb +8 -0
  106. data/spec/proc/raw_scanner/spec_helper.rb +63 -0
  107. data/spec/{proc_scanner/block_comment_spec.rb → raw_scanner/block_comment_shared_spec.rb} +1 -5
  108. data/spec/{proc_scanner/double_colons_spec.rb → raw_scanner/double_colons_shared_spec.rb} +1 -5
  109. data/spec/{proc_scanner/double_quote_str_w_interpolation_spec.rb → raw_scanner/double_quote_str_w_interpolation_shared_spec.rb} +1 -5
  110. data/spec/{proc_scanner/double_quote_str_wo_interpolation_spec.rb → raw_scanner/double_quote_str_wo_interpolation_shared_spec.rb} +1 -5
  111. data/spec/raw_scanner/heredoc_w_indent_shared_spec.rb +69 -0
  112. data/spec/raw_scanner/heredoc_wo_indent_shared_spec.rb +70 -0
  113. data/spec/{proc_scanner/kw_do_alias1_spec.rb → raw_scanner/kw_block_start_alias1_shared_spec.rb} +10 -26
  114. data/spec/{proc_scanner/kw_do_alias2_spec.rb → raw_scanner/kw_block_start_alias2_shared_spec.rb} +10 -25
  115. data/spec/{proc_scanner/per_line_comment_spec.rb → raw_scanner/per_line_comment_shared_spec.rb} +1 -5
  116. data/spec/raw_scanner/shared_specs.rb +3 -0
  117. data/spec/{proc_scanner/single_quote_str_spec.rb → raw_scanner/single_quote_str_shared_spec.rb} +1 -5
  118. data/spec/{proc_scanner/slash_operator_spec.rb → raw_scanner/slash_operator_shared_spec.rb} +1 -5
  119. data/spec/run_spec.sh +7 -1
  120. data/spec/spec_helper.rb +8 -25
  121. metadata +204 -47
  122. data/.rvmrc +0 -1
  123. data/VERSION +0 -1
  124. data/lib/sourcify/proc/scanner/comment.rb +0 -21
  125. data/lib/sourcify/proc/scanner/counter.rb +0 -44
  126. data/lib/sourcify/proc/scanner/dstring.rb +0 -59
  127. data/lib/sourcify/proc/scanner/extensions.rb +0 -171
  128. data/lib/sourcify/proc/scanner/heredoc.rb +0 -24
  129. data/spec/proc_scanner/heredoc_spec.rb +0 -144
  130. 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
@@ -0,0 +1,8 @@
1
+ module Sourcify
2
+ module Method
3
+ class Parser #:nodoc:all
4
+ Sourcify.require_rb('common', 'parser', 'source_code')
5
+ SourceCode = Common::Parser::SourceCode
6
+ end
7
+ end
8
+ end
@@ -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
@@ -1,5 +1,4 @@
1
- Sourcify.require_rb('proc', 'scanner')
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
- CodeScanner.process(@source_code, opts) do |code|
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
- class Converter
5
- class << self
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/spec/../lib/sourcify/proc/scanner.rl"
3
- Sourcify.require_rb('proc', 'scanner', 'extensions')
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
- module Scanner #:nodoc:all
7
+ class Parser
8
+ module RawScanner #:nodoc:all
8
9
 
9
10
 
10
- # line 471 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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/spec/../lib/sourcify/proc/scanner.rb"
14
+ # line 2 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rb"
14
15
  class << self
15
- attr_accessor :_proc_scanner_actions
16
- private :_proc_scanner_actions, :_proc_scanner_actions=
16
+ attr_accessor :_scanner_actions
17
+ private :_scanner_actions, :_scanner_actions=
17
18
  end
18
- self._proc_scanner_actions = [
19
+ self._scanner_actions = [
19
20
  0, 1, 0, 1, 2, 1, 3, 1,
20
- 4, 1, 5, 1, 6, 1, 7, 1,
21
- 8, 1, 9, 1, 10, 1, 11, 1,
22
- 13, 1, 15, 1, 16, 1, 17, 1,
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
- 12, 2, 3, 14, 2, 3, 18, 2,
47
- 3, 19, 2, 3, 84, 2, 3, 85,
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 :_proc_scanner_key_offsets
53
- private :_proc_scanner_key_offsets, :_proc_scanner_key_offsets=
53
+ attr_accessor :_scanner_key_offsets
54
+ private :_scanner_key_offsets, :_scanner_key_offsets=
54
55
  end
55
- self._proc_scanner_key_offsets = [
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, 64, 65, 72, 73,
59
- 74, 75, 76, 77, 89, 94, 95, 96,
60
- 97, 98, 105, 106, 107, 108, 110, 111,
61
- 112, 113, 114, 115, 116, 117, 118, 119,
62
- 121, 123, 125, 127, 128, 129, 157, 185,
63
- 187, 188, 189, 191, 193, 195, 196, 197,
64
- 199, 201, 203, 204, 205, 207, 209, 211,
65
- 212, 213, 215, 217, 219, 220, 221, 223,
66
- 225, 227, 228, 229, 231, 233, 235, 236,
67
- 237, 239, 241, 243, 244, 245, 247, 249,
68
- 251, 252, 253, 255, 257, 259, 260, 261,
69
- 263, 265, 267, 268, 269, 271, 273, 275,
70
- 276, 277, 279, 281, 283, 284, 285, 287,
71
- 289, 291, 292, 293, 295, 297, 299, 300,
72
- 301, 303, 305, 307, 308, 309, 311, 313,
73
- 315, 316, 317, 319, 321, 323, 324, 325,
74
- 327, 329, 331, 332, 333, 335, 337, 339,
75
- 340, 341, 343, 345, 347, 348, 349, 351,
76
- 353, 355, 356, 358, 360, 361, 362, 364,
77
- 365, 366, 368, 370, 372, 373, 374, 376,
78
- 378, 380, 381, 382, 384, 386, 388, 389,
79
- 390, 392, 394, 396, 397, 398, 400, 402,
80
- 404, 405, 406, 408, 410, 411, 412, 413,
81
- 414, 415, 416, 417, 418, 419, 420, 421,
82
- 422, 423, 424, 425, 426, 427, 428, 429,
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, 577, 581, 582, 584, 589,
87
- 590, 591, 592, 593, 594, 595, 596, 597,
88
- 598, 599, 600, 601, 602, 603, 608, 642,
89
- 644, 646, 648, 650, 652, 654, 656, 658,
90
- 660, 662, 664, 666, 668, 670, 672, 674,
91
- 676, 678, 680, 682, 684, 686, 687, 689,
92
- 691, 693, 695, 697, 699, 701, 702, 703,
93
- 704, 705, 706, 707, 708, 709, 710, 711,
94
- 712, 713, 714, 715, 716, 717, 718, 719,
95
- 720, 721, 722, 723, 724, 725, 726, 727,
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 :_proc_scanner_trans_keys
101
- private :_proc_scanner_trans_keys, :_proc_scanner_trans_keys=
101
+ attr_accessor :_scanner_trans_keys
102
+ private :_scanner_trans_keys, :_scanner_trans_keys=
102
103
  end
103
- self._proc_scanner_trans_keys = [
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, 103, 105,
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, 10, 32,
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, 9, 32, 98,
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, 0
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 :_proc_scanner_single_lengths
200
- private :_proc_scanner_single_lengths, :_proc_scanner_single_lengths=
200
+ attr_accessor :_scanner_single_lengths
201
+ private :_scanner_single_lengths, :_scanner_single_lengths=
201
202
  end
202
- self._proc_scanner_single_lengths = [
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, 1, 1, 1, 1, 1,
206
- 1, 1, 1, 4, 3, 1, 1, 1,
207
- 1, 1, 1, 1, 1, 2, 1, 1,
208
- 1, 1, 1, 1, 1, 1, 1, 2,
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, 10, 2, 1, 2, 3, 1,
234
- 1, 1, 1, 1, 1, 1, 1, 1,
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
- 2, 2, 2, 2, 2, 1, 2, 2,
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 :_proc_scanner_range_lengths
248
- private :_proc_scanner_range_lengths, :_proc_scanner_range_lengths=
248
+ attr_accessor :_scanner_range_lengths
249
+ private :_scanner_range_lengths, :_scanner_range_lengths=
249
250
  end
250
- self._proc_scanner_range_lengths = [
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, 3, 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, 1, 1, 0, 0, 1, 0,
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 :_proc_scanner_index_offsets
296
- private :_proc_scanner_index_offsets, :_proc_scanner_index_offsets=
296
+ attr_accessor :_scanner_index_offsets
297
+ private :_scanner_index_offsets, :_scanner_index_offsets=
297
298
  end
298
- self._proc_scanner_index_offsets = [
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, 65, 67, 72, 74,
302
- 76, 78, 80, 82, 91, 96, 98, 100,
303
- 102, 104, 109, 111, 113, 115, 118, 120,
304
- 122, 124, 126, 128, 130, 132, 134, 136,
305
- 139, 142, 145, 148, 150, 152, 181, 210,
306
- 213, 215, 217, 220, 223, 226, 228, 230,
307
- 233, 236, 239, 241, 243, 246, 249, 252,
308
- 254, 256, 259, 262, 265, 267, 269, 272,
309
- 275, 278, 280, 282, 285, 288, 291, 293,
310
- 295, 298, 301, 304, 306, 308, 311, 314,
311
- 317, 319, 321, 324, 327, 330, 332, 334,
312
- 337, 340, 343, 345, 347, 350, 353, 356,
313
- 358, 360, 363, 366, 369, 371, 373, 376,
314
- 379, 382, 384, 386, 389, 392, 395, 397,
315
- 399, 402, 405, 408, 410, 412, 415, 418,
316
- 421, 423, 425, 428, 431, 434, 436, 438,
317
- 441, 444, 447, 449, 451, 454, 457, 460,
318
- 462, 464, 467, 470, 473, 475, 477, 480,
319
- 483, 486, 488, 491, 494, 496, 498, 501,
320
- 503, 505, 508, 511, 514, 516, 518, 521,
321
- 524, 527, 529, 531, 534, 537, 540, 542,
322
- 544, 547, 550, 553, 555, 557, 560, 563,
323
- 566, 568, 570, 573, 576, 578, 580, 582,
324
- 584, 586, 588, 590, 592, 594, 596, 598,
325
- 600, 602, 604, 606, 608, 610, 612, 614,
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, 752, 756, 758, 761, 766,
330
- 768, 770, 772, 774, 776, 778, 780, 782,
331
- 784, 786, 788, 790, 792, 794, 800, 835,
332
- 838, 841, 844, 847, 850, 853, 856, 859,
333
- 862, 865, 868, 871, 874, 877, 880, 883,
334
- 886, 889, 892, 895, 898, 901, 903, 906,
335
- 909, 912, 915, 918, 921, 924, 926, 928,
336
- 930, 932, 934, 936, 938, 940, 942, 944,
337
- 946, 948, 950, 952, 954, 956, 958, 960,
338
- 962, 964, 966, 968, 970, 972, 974, 976,
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 :_proc_scanner_indicies
344
- private :_proc_scanner_indicies, :_proc_scanner_indicies=
344
+ attr_accessor :_scanner_indicies
345
+ private :_scanner_indicies, :_scanner_indicies=
345
346
  end
346
- self._proc_scanner_indicies = [
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, 22, 21, 23,
355
- 21, 24, 21, 21, 21, 21, 21, 25,
356
- 26, 21, 24, 21, 27, 21, 28, 21,
357
- 29, 21, 30, 30, 31, 21, 30, 21,
358
- 21, 21, 25, 33, 33, 34, 33, 32,
359
- 35, 32, 32, 36, 24, 21, 37, 21,
360
- 21, 21, 21, 21, 38, 39, 21, 40,
361
- 21, 26, 21, 41, 42, 21, 43, 21,
362
- 44, 21, 24, 21, 45, 21, 37, 21,
363
- 46, 21, 47, 21, 37, 21, 50, 49,
364
- 50, 51, 49, 50, 52, 49, 50, 53,
365
- 49, 50, 54, 49, 56, 55, 58, 57,
366
- 60, 61, 62, 63, 64, 65, 66, 67,
367
- 68, 69, 70, 71, 72, 73, 74, 75,
368
- 76, 77, 78, 79, 80, 81, 82, 83,
369
- 84, 85, 86, 87, 59, 88, 89, 90,
370
- 91, 92, 93, 94, 95, 96, 97, 98,
371
- 99, 100, 101, 102, 103, 104, 105, 106,
372
- 107, 108, 109, 110, 111, 112, 113, 114,
373
- 115, 59, 116, 117, 88, 119, 118, 116,
374
- 118, 116, 122, 121, 119, 122, 121, 116,
375
- 123, 89, 125, 124, 116, 124, 116, 127,
376
- 126, 125, 127, 126, 116, 128, 90, 130,
377
- 129, 116, 129, 116, 132, 131, 130, 132,
378
- 131, 116, 133, 91, 135, 134, 116, 134,
379
- 116, 137, 136, 135, 137, 136, 116, 138,
380
- 92, 140, 139, 116, 139, 116, 142, 141,
381
- 140, 142, 141, 116, 143, 93, 145, 144,
382
- 116, 144, 116, 147, 146, 145, 147, 146,
383
- 116, 149, 94, 151, 150, 116, 150, 116,
384
- 153, 152, 151, 153, 152, 116, 154, 95,
385
- 156, 155, 116, 155, 116, 158, 157, 156,
386
- 158, 157, 116, 159, 96, 161, 160, 116,
387
- 160, 116, 163, 162, 161, 163, 162, 116,
388
- 164, 97, 166, 165, 116, 165, 116, 168,
389
- 167, 166, 168, 167, 116, 169, 98, 171,
390
- 170, 116, 170, 116, 173, 172, 171, 173,
391
- 172, 116, 174, 99, 176, 175, 116, 175,
392
- 116, 178, 177, 176, 178, 177, 116, 179,
393
- 100, 181, 180, 116, 180, 116, 183, 182,
394
- 181, 183, 182, 116, 184, 101, 186, 185,
395
- 116, 185, 116, 188, 187, 186, 188, 187,
396
- 116, 189, 102, 191, 190, 116, 190, 116,
397
- 193, 192, 191, 193, 192, 116, 194, 103,
398
- 196, 195, 116, 195, 116, 198, 197, 196,
399
- 198, 197, 116, 199, 104, 201, 200, 116,
400
- 200, 116, 203, 202, 201, 203, 202, 116,
401
- 204, 105, 206, 205, 116, 205, 116, 208,
402
- 207, 206, 208, 207, 116, 209, 106, 211,
403
- 210, 116, 210, 116, 213, 212, 211, 213,
404
- 212, 116, 214, 107, 216, 215, 116, 215,
405
- 116, 218, 217, 216, 218, 217, 219, 116,
406
- 108, 221, 220, 116, 220, 223, 116, 222,
407
- 223, 221, 222, 224, 225, 109, 116, 224,
408
- 120, 227, 226, 120, 228, 226, 230, 229,
409
- 225, 229, 231, 116, 110, 233, 232, 116,
410
- 232, 235, 116, 234, 235, 233, 234, 236,
411
- 116, 111, 238, 237, 116, 237, 240, 116,
412
- 239, 240, 238, 239, 241, 116, 112, 243,
413
- 242, 116, 242, 245, 116, 244, 245, 243,
414
- 244, 246, 116, 113, 248, 247, 116, 247,
415
- 250, 116, 249, 250, 248, 249, 251, 116,
416
- 114, 253, 252, 116, 252, 255, 116, 254,
417
- 255, 253, 254, 256, 116, 115, 258, 257,
418
- 116, 257, 260, 116, 259, 260, 258, 259,
419
- 262, 261, 264, 263, 266, 265, 268, 267,
420
- 270, 269, 272, 271, 274, 273, 276, 275,
421
- 278, 277, 280, 279, 282, 281, 284, 283,
422
- 286, 285, 288, 287, 290, 289, 292, 291,
423
- 294, 293, 296, 295, 298, 297, 300, 299,
424
- 302, 301, 304, 303, 306, 305, 308, 307,
425
- 310, 309, 312, 311, 314, 313, 316, 315,
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, 360, 360, 361, 362,
440
- 363, 364, 365, 366, 367, 368, 360, 359,
441
- 360, 360, 360, 369, 371, 370, 372, 373,
442
- 370, 33, 33, 34, 33, 374, 374, 36,
443
- 35, 374, 375, 370, 376, 370, 24, 370,
444
- 377, 370, 378, 370, 379, 370, 58, 380,
445
- 381, 380, 50, 49, 50, 54, 56, 55,
446
- 383, 57, 61, 385, 386, 73, 84, 384,
447
- 60, 61, 62, 63, 64, 65, 66, 67,
448
- 68, 69, 70, 71, 72, 73, 74, 75,
449
- 76, 77, 78, 79, 388, 388, 80, 81,
450
- 82, 83, 84, 389, 388, 389, 388, 85,
451
- 86, 87, 387, 116, 122, 121, 116, 127,
452
- 126, 116, 132, 131, 116, 137, 136, 116,
453
- 142, 141, 116, 147, 146, 116, 153, 152,
454
- 116, 158, 157, 116, 163, 162, 116, 168,
455
- 167, 116, 173, 172, 116, 178, 177, 116,
456
- 183, 182, 116, 188, 187, 116, 193, 192,
457
- 116, 198, 197, 116, 203, 202, 116, 208,
458
- 207, 116, 213, 212, 116, 218, 217, 223,
459
- 116, 222, 390, 228, 226, 230, 229, 235,
460
- 116, 234, 240, 116, 239, 245, 116, 244,
461
- 250, 116, 249, 255, 116, 254, 260, 116,
462
- 259, 116, 149, 94, 262, 261, 264, 263,
463
- 266, 265, 268, 267, 270, 269, 272, 271,
464
- 274, 273, 276, 275, 278, 277, 280, 279,
465
- 282, 281, 284, 283, 286, 285, 288, 287,
466
- 290, 289, 292, 291, 294, 293, 296, 295,
467
- 298, 297, 300, 299, 302, 301, 304, 303,
468
- 306, 305, 308, 307, 310, 309, 312, 311,
469
- 314, 313, 316, 315, 0
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 :_proc_scanner_trans_targs
474
- private :_proc_scanner_trans_targs, :_proc_scanner_trans_targs=
474
+ attr_accessor :_scanner_trans_targs
475
+ private :_scanner_trans_targs, :_scanner_trans_targs=
475
476
  end
476
- self._proc_scanner_trans_targs = [
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, 242, 19, 20,
480
- 21, 242, 23, 25, 26, 27, 246, 248,
481
- 242, 28, 29, 30, 247, 33, 242, 35,
482
- 36, 38, 41, 39, 40, 42, 44, 45,
483
- 257, 46, 47, 48, 49, 50, 258, 51,
484
- 52, 260, 0, 261, 261, 261, 261, 261,
485
- 261, 261, 261, 261, 261, 261, 261, 261,
486
- 261, 261, 261, 261, 261, 261, 261, 261,
487
- 261, 261, 261, 261, 261, 261, 261, 261,
488
- 55, 60, 65, 70, 75, 80, 85, 90,
489
- 95, 100, 105, 110, 115, 120, 125, 130,
490
- 135, 140, 145, 150, 155, 160, 166, 171,
491
- 176, 181, 186, 191, 261, 56, 57, 263,
492
- 261, 58, 59, 61, 62, 264, 63, 64,
493
- 66, 67, 265, 68, 69, 71, 72, 266,
494
- 73, 74, 76, 77, 267, 78, 79, 81,
495
- 82, 268, 83, 84, 261, 86, 87, 269,
496
- 88, 89, 91, 92, 270, 93, 94, 96,
497
- 97, 271, 98, 99, 101, 102, 272, 103,
498
- 104, 106, 107, 273, 108, 109, 111, 112,
499
- 274, 113, 114, 116, 117, 275, 118, 119,
500
- 121, 122, 276, 123, 124, 126, 127, 277,
501
- 128, 129, 131, 132, 278, 133, 134, 136,
502
- 137, 279, 138, 139, 141, 142, 280, 143,
503
- 144, 146, 147, 281, 148, 149, 151, 152,
504
- 282, 153, 154, 156, 157, 283, 158, 159,
505
- 161, 284, 162, 163, 164, 165, 285, 167,
506
- 168, 286, 169, 170, 172, 173, 287, 174,
507
- 175, 177, 178, 288, 179, 180, 182, 183,
508
- 289, 184, 185, 187, 188, 290, 189, 190,
509
- 192, 193, 291, 194, 195, 196, 293, 197,
510
- 294, 198, 295, 199, 296, 200, 297, 201,
511
- 298, 202, 299, 203, 300, 204, 301, 205,
512
- 302, 206, 303, 207, 304, 208, 305, 209,
513
- 306, 210, 307, 211, 308, 212, 309, 213,
514
- 310, 214, 311, 215, 312, 216, 313, 217,
515
- 314, 218, 315, 219, 316, 220, 317, 221,
516
- 318, 222, 319, 223, 320, 224, 225, 226,
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, 242,
522
- 243, 244, 245, 249, 250, 251, 252, 253,
523
- 254, 242, 242, 18, 22, 24, 242, 31,
524
- 32, 34, 37, 43, 256, 255, 257, 259,
525
- 261, 262, 292, 261, 53, 54, 261, 261
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 :_proc_scanner_trans_actions
530
- private :_proc_scanner_trans_actions, :_proc_scanner_trans_actions=
530
+ attr_accessor :_scanner_trans_actions
531
+ private :_scanner_trans_actions, :_scanner_trans_actions=
531
532
  end
532
- self._proc_scanner_trans_actions = [
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, 21, 0, 0,
536
- 0, 9, 0, 0, 0, 0, 5, 5,
537
- 19, 0, 0, 0, 0, 0, 7, 0,
538
- 0, 0, 0, 0, 0, 0, 0, 0,
539
- 27, 0, 0, 0, 0, 0, 217, 0,
540
- 0, 0, 0, 99, 43, 33, 47, 49,
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, 0, 0, 0, 31, 0, 0, 5,
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, 101, 0, 0, 5,
552
- 0, 0, 0, 0, 5, 0, 0, 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, 5, 0, 0, 0, 0, 5, 0,
562
- 0, 5, 0, 0, 0, 0, 5, 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, 103, 0,
566
- 105, 0, 107, 0, 109, 0, 111, 0,
567
- 113, 0, 115, 0, 117, 0, 119, 0,
568
- 121, 0, 123, 0, 125, 0, 127, 0,
569
- 129, 0, 131, 0, 133, 0, 135, 0,
570
- 137, 0, 139, 0, 141, 0, 143, 0,
571
- 145, 0, 147, 0, 149, 0, 151, 0,
572
- 153, 0, 155, 0, 157, 183, 0, 5,
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, 11,
578
- 0, 5, 5, 5, 5, 5, 5, 5,
579
- 5, 15, 17, 0, 0, 0, 13, 0,
580
- 0, 0, 0, 0, 214, 23, 25, 29,
581
- 89, 223, 220, 95, 0, 0, 91, 93
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 :_proc_scanner_to_state_actions
586
- private :_proc_scanner_to_state_actions, :_proc_scanner_to_state_actions=
586
+ attr_accessor :_scanner_to_state_actions
587
+ private :_scanner_to_state_actions, :_scanner_to_state_actions=
587
588
  end
588
- self._proc_scanner_to_state_actions = [
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, 1, 0, 0, 0, 0, 0,
620
- 0, 0, 0, 0, 0, 0, 0, 211,
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 :_proc_scanner_from_state_actions
634
- private :_proc_scanner_from_state_actions, :_proc_scanner_from_state_actions=
634
+ attr_accessor :_scanner_from_state_actions
635
+ private :_scanner_from_state_actions, :_scanner_from_state_actions=
635
636
  end
636
- self._proc_scanner_from_state_actions = [
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, 0, 0, 0, 0,
668
- 0, 0, 0, 0, 0, 0, 0, 3,
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 :_proc_scanner_eof_trans
682
- private :_proc_scanner_eof_trans, :_proc_scanner_eof_trans=
682
+ attr_accessor :_scanner_eof_trans
683
+ private :_scanner_eof_trans, :_scanner_eof_trans=
683
684
  end
684
- self._proc_scanner_eof_trans = [
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, 22,
688
- 22, 22, 22, 22, 33, 33, 33, 22,
689
- 22, 22, 22, 22, 22, 22, 22, 22,
690
- 22, 22, 22, 22, 22, 22, 49, 49,
691
- 49, 49, 49, 0, 0, 60, 60, 60,
692
- 60, 60, 121, 121, 60, 60, 60, 121,
693
- 121, 60, 60, 60, 121, 121, 60, 60,
694
- 60, 121, 121, 60, 60, 60, 121, 121,
695
- 60, 60, 60, 121, 121, 149, 149, 149,
696
- 121, 121, 60, 60, 60, 121, 121, 60,
697
- 60, 60, 121, 121, 60, 60, 60, 121,
698
- 121, 60, 60, 60, 121, 121, 60, 60,
699
- 60, 121, 121, 60, 60, 60, 121, 121,
700
- 60, 60, 60, 121, 121, 60, 60, 60,
701
- 121, 121, 60, 60, 60, 121, 121, 60,
702
- 60, 60, 121, 121, 60, 60, 60, 121,
703
- 121, 60, 60, 60, 121, 121, 60, 60,
704
- 60, 121, 121, 60, 60, 60, 121, 121,
705
- 60, 60, 121, 121, 121, 121, 60, 60,
706
- 60, 121, 121, 60, 60, 60, 121, 121,
707
- 60, 60, 60, 121, 121, 60, 60, 60,
708
- 121, 121, 60, 60, 60, 121, 121, 60,
709
- 60, 60, 121, 121, 0, 0, 0, 0,
710
- 0, 0, 0, 0, 0, 0, 0, 0,
711
- 0, 0, 0, 0, 0, 0, 0, 0,
712
- 0, 0, 0, 0, 0, 0, 0, 0,
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, 370, 371, 371, 375, 375,
716
- 375, 371, 371, 371, 371, 371, 371, 0,
717
- 382, 0, 383, 0, 384, 0, 388, 391,
718
- 391, 391, 391, 391, 391, 391, 391, 391,
719
- 391, 391, 391, 391, 391, 391, 391, 391,
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 :proc_scanner_start
730
+ attr_accessor :scanner_start
730
731
  end
731
- self.proc_scanner_start = 224;
732
+ self.scanner_start = 224;
732
733
  class << self
733
- attr_accessor :proc_scanner_first_final
734
+ attr_accessor :scanner_first_final
734
735
  end
735
- self.proc_scanner_first_final = 224;
736
+ self.scanner_first_final = 224;
736
737
  class << self
737
- attr_accessor :proc_scanner_error
738
+ attr_accessor :scanner_error
738
739
  end
739
- self.proc_scanner_error = 0;
740
+ self.scanner_error = 0;
740
741
 
741
742
  class << self
742
- attr_accessor :proc_scanner_en_new_statement
743
+ attr_accessor :scanner_en_per_line_comment
743
744
  end
744
- self.proc_scanner_en_new_statement = 242;
745
+ self.scanner_en_per_line_comment = 242;
745
746
  class << self
746
- attr_accessor :proc_scanner_en_per_line_comment
747
+ attr_accessor :scanner_en_block_comment
747
748
  end
748
- self.proc_scanner_en_per_line_comment = 255;
749
+ self.scanner_en_block_comment = 244;
749
750
  class << self
750
- attr_accessor :proc_scanner_en_block_comment
751
+ attr_accessor :scanner_en_heredoc
751
752
  end
752
- self.proc_scanner_en_block_comment = 257;
753
+ self.scanner_en_heredoc = 246;
753
754
  class << self
754
- attr_accessor :proc_scanner_en_heredoc
755
+ attr_accessor :scanner_en_string
755
756
  end
756
- self.proc_scanner_en_heredoc = 259;
757
+ self.scanner_en_string = 248;
757
758
  class << self
758
- attr_accessor :proc_scanner_en_string
759
+ attr_accessor :scanner_en_dstring1
759
760
  end
760
- self.proc_scanner_en_string = 261;
761
+ self.scanner_en_dstring1 = 280;
761
762
  class << self
762
- attr_accessor :proc_scanner_en_dstring1
763
+ attr_accessor :scanner_en_dstring2
763
764
  end
764
- self.proc_scanner_en_dstring1 = 293;
765
+ self.scanner_en_dstring2 = 281;
765
766
  class << self
766
- attr_accessor :proc_scanner_en_dstring2
767
+ attr_accessor :scanner_en_dstring3
767
768
  end
768
- self.proc_scanner_en_dstring2 = 294;
769
+ self.scanner_en_dstring3 = 282;
769
770
  class << self
770
- attr_accessor :proc_scanner_en_dstring3
771
+ attr_accessor :scanner_en_dstring4
771
772
  end
772
- self.proc_scanner_en_dstring3 = 295;
773
+ self.scanner_en_dstring4 = 283;
773
774
  class << self
774
- attr_accessor :proc_scanner_en_dstring4
775
+ attr_accessor :scanner_en_dstring5
775
776
  end
776
- self.proc_scanner_en_dstring4 = 296;
777
+ self.scanner_en_dstring5 = 284;
777
778
  class << self
778
- attr_accessor :proc_scanner_en_dstring5
779
+ attr_accessor :scanner_en_dstring6
779
780
  end
780
- self.proc_scanner_en_dstring5 = 297;
781
+ self.scanner_en_dstring6 = 285;
781
782
  class << self
782
- attr_accessor :proc_scanner_en_dstring6
783
+ attr_accessor :scanner_en_dstring7
783
784
  end
784
- self.proc_scanner_en_dstring6 = 298;
785
+ self.scanner_en_dstring7 = 286;
785
786
  class << self
786
- attr_accessor :proc_scanner_en_dstring7
787
+ attr_accessor :scanner_en_dstring8
787
788
  end
788
- self.proc_scanner_en_dstring7 = 299;
789
+ self.scanner_en_dstring8 = 287;
789
790
  class << self
790
- attr_accessor :proc_scanner_en_dstring8
791
+ attr_accessor :scanner_en_dstring9
791
792
  end
792
- self.proc_scanner_en_dstring8 = 300;
793
+ self.scanner_en_dstring9 = 288;
793
794
  class << self
794
- attr_accessor :proc_scanner_en_dstring9
795
+ attr_accessor :scanner_en_dstring10
795
796
  end
796
- self.proc_scanner_en_dstring9 = 301;
797
+ self.scanner_en_dstring10 = 289;
797
798
  class << self
798
- attr_accessor :proc_scanner_en_dstring10
799
+ attr_accessor :scanner_en_dstring11
799
800
  end
800
- self.proc_scanner_en_dstring10 = 302;
801
+ self.scanner_en_dstring11 = 290;
801
802
  class << self
802
- attr_accessor :proc_scanner_en_dstring11
803
+ attr_accessor :scanner_en_dstring12
803
804
  end
804
- self.proc_scanner_en_dstring11 = 303;
805
+ self.scanner_en_dstring12 = 291;
805
806
  class << self
806
- attr_accessor :proc_scanner_en_dstring12
807
+ attr_accessor :scanner_en_dstring13
807
808
  end
808
- self.proc_scanner_en_dstring12 = 304;
809
+ self.scanner_en_dstring13 = 292;
809
810
  class << self
810
- attr_accessor :proc_scanner_en_dstring13
811
+ attr_accessor :scanner_en_dstring14
811
812
  end
812
- self.proc_scanner_en_dstring13 = 305;
813
+ self.scanner_en_dstring14 = 293;
813
814
  class << self
814
- attr_accessor :proc_scanner_en_dstring14
815
+ attr_accessor :scanner_en_dstring15
815
816
  end
816
- self.proc_scanner_en_dstring14 = 306;
817
+ self.scanner_en_dstring15 = 294;
817
818
  class << self
818
- attr_accessor :proc_scanner_en_dstring15
819
+ attr_accessor :scanner_en_dstring16
819
820
  end
820
- self.proc_scanner_en_dstring15 = 307;
821
+ self.scanner_en_dstring16 = 295;
821
822
  class << self
822
- attr_accessor :proc_scanner_en_dstring16
823
+ attr_accessor :scanner_en_dstring17
823
824
  end
824
- self.proc_scanner_en_dstring16 = 308;
825
+ self.scanner_en_dstring17 = 296;
825
826
  class << self
826
- attr_accessor :proc_scanner_en_dstring17
827
+ attr_accessor :scanner_en_dstring18
827
828
  end
828
- self.proc_scanner_en_dstring17 = 309;
829
+ self.scanner_en_dstring18 = 297;
829
830
  class << self
830
- attr_accessor :proc_scanner_en_dstring18
831
+ attr_accessor :scanner_en_dstring19
831
832
  end
832
- self.proc_scanner_en_dstring18 = 310;
833
+ self.scanner_en_dstring19 = 298;
833
834
  class << self
834
- attr_accessor :proc_scanner_en_dstring19
835
+ attr_accessor :scanner_en_dstring20
835
836
  end
836
- self.proc_scanner_en_dstring19 = 311;
837
+ self.scanner_en_dstring20 = 299;
837
838
  class << self
838
- attr_accessor :proc_scanner_en_dstring20
839
+ attr_accessor :scanner_en_dstring21
839
840
  end
840
- self.proc_scanner_en_dstring20 = 312;
841
+ self.scanner_en_dstring21 = 300;
841
842
  class << self
842
- attr_accessor :proc_scanner_en_dstring21
843
+ attr_accessor :scanner_en_dstring22
843
844
  end
844
- self.proc_scanner_en_dstring21 = 313;
845
+ self.scanner_en_dstring22 = 301;
845
846
  class << self
846
- attr_accessor :proc_scanner_en_dstring22
847
+ attr_accessor :scanner_en_dstring23
847
848
  end
848
- self.proc_scanner_en_dstring22 = 314;
849
+ self.scanner_en_dstring23 = 302;
849
850
  class << self
850
- attr_accessor :proc_scanner_en_dstring23
851
+ attr_accessor :scanner_en_dstring24
851
852
  end
852
- self.proc_scanner_en_dstring23 = 315;
853
+ self.scanner_en_dstring24 = 303;
853
854
  class << self
854
- attr_accessor :proc_scanner_en_dstring24
855
+ attr_accessor :scanner_en_dstring25
855
856
  end
856
- self.proc_scanner_en_dstring24 = 316;
857
+ self.scanner_en_dstring25 = 304;
857
858
  class << self
858
- attr_accessor :proc_scanner_en_dstring25
859
+ attr_accessor :scanner_en_dstring26
859
860
  end
860
- self.proc_scanner_en_dstring25 = 317;
861
+ self.scanner_en_dstring26 = 305;
861
862
  class << self
862
- attr_accessor :proc_scanner_en_dstring26
863
+ attr_accessor :scanner_en_dstring27
863
864
  end
864
- self.proc_scanner_en_dstring26 = 318;
865
+ self.scanner_en_dstring27 = 306;
865
866
  class << self
866
- attr_accessor :proc_scanner_en_dstring27
867
+ attr_accessor :scanner_en_dstring28
867
868
  end
868
- self.proc_scanner_en_dstring27 = 319;
869
+ self.scanner_en_dstring28 = 307;
869
870
  class << self
870
- attr_accessor :proc_scanner_en_dstring28
871
+ attr_accessor :scanner_en_new_statement
871
872
  end
872
- self.proc_scanner_en_dstring28 = 320;
873
+ self.scanner_en_new_statement = 308;
873
874
  class << self
874
- attr_accessor :proc_scanner_en_main
875
+ attr_accessor :scanner_en_main
875
876
  end
876
- self.proc_scanner_en_main = 224;
877
+ self.scanner_en_main = 224;
877
878
 
878
879
 
879
- # line 473 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
880
+ # line 136 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/proc/parser/raw_scanner.rl"
880
881
 
881
- extend Scanner::Extensions
882
+ extend Extensions
882
883
 
883
- def self.execute!
884
- data = @data
885
- eof = data.length
886
-
887
- # line 2 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
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 = proc_scanner_start
892
+ cs = scanner_start
892
893
  ts = nil
893
894
  te = nil
894
895
  act = 0
895
896
  end
896
897
 
897
- # line 480 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
898
-
899
- # line 2 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
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 = _proc_scanner_from_state_actions[cs]
922
- _nacts = _proc_scanner_actions[_acts]
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 _proc_scanner_actions[_acts - 1]
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/spec/../lib/sourcify/proc/scanner.rb"
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 = _proc_scanner_key_offsets[cs]
940
- _trans = _proc_scanner_index_offsets[cs]
941
- _klen = _proc_scanner_single_lengths[cs]
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] < _proc_scanner_trans_keys[_mid]
954
+ if data[p] < _scanner_trans_keys[_mid]
954
955
  _upper = _mid - 1
955
- elsif data[p] > _proc_scanner_trans_keys[_mid]
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 = _proc_scanner_range_lengths[cs]
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] < _proc_scanner_trans_keys[_mid]
975
+ if data[p] < _scanner_trans_keys[_mid]
975
976
  _upper = _mid - 2
976
- elsif data[p] > _proc_scanner_trans_keys[_mid+1]
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 = _proc_scanner_indicies[_trans]
989
+ _trans = _scanner_indicies[_trans]
989
990
  end
990
991
  if _goto_level <= _eof_trans
991
- cs = _proc_scanner_trans_targs[_trans]
992
- if _proc_scanner_trans_actions[_trans] != 0
993
- _acts = _proc_scanner_trans_actions[_trans]
994
- _nacts = _proc_scanner_actions[_acts]
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 _proc_scanner_actions[_acts - 1]
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 47 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1007
+ # line 7 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
1007
1008
  begin
1008
- te = p+1
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 5 then
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 14 then
1142
- # line 77 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1036
+ when 6 then
1037
+ # line 16 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
1143
1038
  begin
1144
- act = 6; end
1145
- when 15 then
1146
- # line 77 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 16 then
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 6 then
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 17 then
1189
- # line 86 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 18 then
1205
- # line 142 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1099
+ when 10 then
1100
+ # line 83 "/home/ty.archlinux/dev/ty/sourcify/lib/sourcify/common/ragel/machines.rl"
1206
1101
  begin
1207
- act = 10; end
1208
- when 19 then
1209
- # line 171 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 37; end
1212
- when 20 then
1213
- # line 135 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 21 then
1228
- # line 141 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 293
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 22 then
1240
- # line 142 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 294
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 23 then
1252
- # line 143 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 295
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 24 then
1264
- # line 144 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 296
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 25 then
1276
- # line 145 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 297
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 26 then
1288
- # line 146 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 298
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 27 then
1300
- # line 147 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 299
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 28 then
1312
- # line 148 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 300
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 29 then
1324
- # line 149 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 301
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 30 then
1336
- # line 150 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 302
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 31 then
1348
- # line 151 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 303
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 32 then
1360
- # line 152 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 304
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 33 then
1372
- # line 153 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 305
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 34 then
1384
- # line 154 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 306
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 35 then
1396
- # line 155 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 307
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 36 then
1408
- # line 156 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 308
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 37 then
1420
- # line 157 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 309
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 38 then
1432
- # line 158 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 310
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 39 then
1444
- # line 159 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 311
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 40 then
1456
- # line 160 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 312
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 41 then
1468
- # line 161 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 313
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 42 then
1480
- # line 162 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 314
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 43 then
1492
- # line 163 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 315
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 44 then
1504
- # line 164 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 316
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 45 then
1516
- # line 165 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 317
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 46 then
1528
- # line 166 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 318
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 47 then
1540
- # line 167 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 319
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 48 then
1552
- # line 168 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 320
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 49 then
1564
- # line 171 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 50 then
1579
- # line 135 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 51 then
1594
- # line 142 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 294
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 52 then
1606
- # line 171 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 53 then
1621
- # line 135 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 54 then
1636
- # line 171 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 55 then
1545
+ when 47 then
1651
1546
  # line 1 "NONE"
1652
1547
  begin
1653
1548
  case act
1654
- when 10 then
1549
+ when 6 then
1655
1550
  begin begin p = ((te))-1; end
1656
1551
  push_dstring(ts, te); begin
1657
- cs = 294
1552
+ cs = 281
1658
1553
  _trigger_goto = true
1659
1554
  _goto_level = _again
1660
1555
  break
1661
1556
  end
1662
1557
  end
1663
- when 37 then
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 56 then
1678
- # line 179 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 57 then
1694
- # line 186 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 58 then
1710
- # line 193 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 59 then
1726
- # line 200 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 60 then
1742
- # line 207 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 61 then
1758
- # line 214 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 62 then
1774
- # line 221 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 63 then
1790
- # line 228 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 64 then
1806
- # line 235 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 65 then
1822
- # line 242 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 66 then
1838
- # line 249 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 67 then
1854
- # line 256 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 68 then
1870
- # line 263 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 69 then
1886
- # line 270 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 70 then
1902
- # line 277 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 71 then
1918
- # line 284 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 72 then
1934
- # line 291 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 73 then
1950
- # line 298 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 74 then
1966
- # line 305 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 75 then
1982
- # line 312 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 76 then
1998
- # line 319 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 77 then
2014
- # line 326 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 78 then
2030
- # line 333 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 79 then
2046
- # line 340 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 80 then
2062
- # line 347 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 81 then
2078
- # line 354 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 82 then
2094
- # line 361 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 83 then
2110
- # line 368 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 380 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 386 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 421 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 460 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 393 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 398 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 403 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 408 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 421 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 242
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 428 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 255
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 432 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 257
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 440 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 259
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 446 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 261
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 450 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 261
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 461 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 465 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 467 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 408 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 415 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 242
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 421 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 242
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 460 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 462 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 463 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 464 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 467 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 408 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 415 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 242
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 463 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 467 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
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 = 242
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 = 242
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/spec/../lib/sourcify/proc/scanner.rb"
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 = _proc_scanner_to_state_actions[cs]
2445
- _nacts = _proc_scanner_actions[_acts]
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 _proc_scanner_actions[_acts - 1]
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/spec/../lib/sourcify/proc/scanner.rb"
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 _proc_scanner_eof_trans[cs] > 0
2479
- _trans = _proc_scanner_eof_trans[cs] - 1;
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 481 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2492
- end
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