sourcify 0.4.2 → 0.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,23 @@
1
+ ## MAC OS
2
+ .DS_Store
3
+
4
+ ## TEXTMATE
5
+ *.tmproj
6
+ tmtags
7
+
8
+ ## EMACS
9
+ *~
10
+ \#*
11
+ .\#*
12
+
13
+ ## VIM
14
+ *.swp
15
+
16
+ ## PROJECT::GENERAL
17
+ coverage
18
+ rdoc
19
+ pkg
20
+ Gemfile.lock
21
+
22
+ ## PROJECT::SPECIFIC
23
+ tmp
data/.rvmrc CHANGED
@@ -1 +1 @@
1
- rvm use 1.9.2-p136@sourcify
1
+ rvm use 1.9.2-p180@sourcify
data/Gemfile ADDED
@@ -0,0 +1,5 @@
1
+ source "http://rubygems.org"
2
+
3
+ # Specify your gem's dependencies in sourcify.gemspec
4
+ gemspec
5
+
@@ -1,3 +1,16 @@
1
+ === 0.5.0 (May 2, 2011)
2
+
3
+ * adds Proc#to_raw_source that supports extracting of raw code, as it is written in
4
+ the source code (see issue#9), it supports all options that are already supported
5
+ by Proc#to_source.
6
+ * MRI-1.8.6 now supports both ParseTree & static-scanner mode
7
+ * out with infinity_test (due to unresolvable & unexpected consistent failure in
8
+ running specs for jruby-1.6.1 & always running ParseTree mode specs in static-scanner
9
+ mode), use homebaked rake tasks (spec:parsetree, spec:static & spec:all) to acheive
10
+ testing of different rubies in different modes
11
+ * removd dependency on jeweler, & use bundler instead to handle dependency & also have
12
+ our own handcrafted gemspec file
13
+
1
14
  === 0.4.2 (Feb 06, 2011)
2
15
 
3
16
  * fixes Sourcify::NoMatchingProcError when inline proc contains hashes (issue#7) [#ngty]
@@ -32,7 +32,7 @@ Or on 1.9.* or JRuby:
32
32
 
33
33
  == Using It
34
34
 
35
- Sourcify adds 3 methods to Proc:
35
+ Sourcify adds 4 methods to Proc:
36
36
 
37
37
  === 1. Proc#to_source
38
38
 
@@ -74,7 +74,23 @@ To extract only the body of the proc:
74
74
  lambda { x + y }.to_sexp(:strip_enclosure => true)
75
75
  # >> s(:call, s(:lvar, :x), :+, s(:arglist, s(:call, nil, :y, s(:arglist)))))
76
76
 
77
- === 3. Proc#source_location
77
+ === 3. Proc#to_raw_source
78
+
79
+ Unlike Proc#to_source, which returns code that retains only functional aspects,
80
+ fetching of raw source returns the raw code enclosed within the proc, including
81
+ fluff like comments:
82
+
83
+ lambda do |i|
84
+ i+1 # (blah)
85
+ end.to_source
86
+ # >> "proc do |i|
87
+ # >> i+1 # (blah)
88
+ # >> end"
89
+
90
+ NOTE: This is extracting of raw code, it relies on static code scanning (even when
91
+ running in ParseTree mode), the gotchas for static code scanning always apply.
92
+
93
+ === 4. Proc#source_location
78
94
 
79
95
  By default, this is only available on 1.9.*, it is added (as a bonus) to provide
80
96
  consistency under 1.8.*:
@@ -197,9 +213,8 @@ you have any code that is not compatible with 1.8.6.
197
213
  == Is it really working ??
198
214
 
199
215
  Sourcify spec suite currently passes in the following rubies:
200
- * MRI-1.8.6 (ParseTree mode ONLY)
201
- * MRI-1.8.7, REE-1.8.7 (ParseTree & static scanner modes)
202
- * JRuby-1.5.1+, MRI-1.9.1, MRI-1.9.2 (static scanner ONLY)
216
+ * MRI-1.8.*, REE-1.8.7 (both ParseTree & static scanner modes)
217
+ * JRuby-1.6.*, MRI-1.9.* (static scanner ONLY)
203
218
 
204
219
  Besides its own spec suite, sourcify has also been tested to handle:
205
220
 
@@ -215,6 +230,8 @@ For projects:
215
230
 
216
231
  Projects using sourcify include:
217
232
  * wrong[http://github.com/sconover/wrong]
233
+ * ruote[http://ruote.rubyforge.org/]
234
+ * dm-ambition[https://github.com/dkubb/dm-ambition]
218
235
 
219
236
  == Additional Resources
220
237
 
data/Rakefile CHANGED
@@ -1,94 +1,57 @@
1
1
  require 'rubygems'
2
2
  require 'rake'
3
+ require 'bundler'
4
+ Bundler::GemHelper.install_tasks
3
5
 
4
- begin
5
- require 'jeweler'
6
- Jeweler::Tasks.new do |gem|
7
- # gem is a Gem::Specification... see http://www.rubygems.org/read/chapter/20 for additional settings
8
- gem.name = "sourcify"
9
- gem.summary = %Q{Workarounds before ruby-core officially supports Proc#to_source (& friends)}
10
- gem.description = %Q{}
11
- gem.email = "ngty77@gmail.com"
12
- gem.homepage = "http://github.com/ngty/sourcify"
13
- gem.authors = ["NgTzeYang"]
14
- gem.required_ruby_version = '>= 1.8.6'
15
- gem.add_dependency 'ruby2ruby', '>= 1.2.5'
16
- gem.add_dependency "sexp_processor", ">= 3.0.5"
17
- gem.add_dependency "file-tail", ">= 1.0.5"
18
- gem.add_development_dependency "bacon", ">= 0"
19
- # Plus one of the following groups:
20
- #
21
- # 1). ParseTree (better performance + dynamic goodness, but not supported on java & 1.9.*)
22
- # >> gem.add_dependency "ParseTree", ">= 3.0.6"
23
- #
24
- # 2). RubyParser (supported for all except 1.8.6)
25
- # >> gem.add_dependency "ruby_parser", ">= 2.0.5"
26
- end
27
- Jeweler::GemcutterTasks.new
28
- rescue LoadError
29
- puts "Jeweler (or a dependency) not available. Install it with: gem install jeweler"
30
- end
6
+ SPEC_SCRIPT = File.expand_path('../spec/run_spec.sh', __FILE__)
7
+ task :default => :spec
31
8
 
32
- require 'rake/testtask'
33
- Rake::TestTask.new(:spec) do |spec|
34
- spec.libs << 'lib' << 'spec'
35
- spec.pattern = 'spec/**/*_spec.rb'
36
- spec.verbose = true
37
- end
9
+ RUBIES = {
10
+ :parsetree => [
11
+ 'ruby-1.8.6-p420@sourcify-parsetree',
12
+ 'ruby-1.8.7-p334@sourcify-parsetree',
13
+ 'ree-1.8.7-2011.03@sourcify-parsetree'
14
+ ],
15
+ :static => [
16
+ 'ruby-1.8.6-p420@sourcify',
17
+ 'ruby-1.8.7-p334@sourcify',
18
+ 'ree-1.8.7-2011.03@sourcify',
19
+ 'jruby-1.6.1@sourcify',
20
+ 'ruby-1.9.1-p378@sourcify',
21
+ 'ruby-1.9.2-p180@sourcify',
22
+ ]
23
+ }
38
24
 
39
- begin
40
- require 'rcov/rcovtask'
41
- Rcov::RcovTask.new do |spec|
42
- spec.libs << 'spec'
43
- spec.pattern = 'spec/**/*_spec.rb'
44
- spec.verbose = true
45
- end
46
- rescue LoadError
47
- task :rcov do
48
- abort "RCov is not available. In order to run rcov, you must: sudo gem install spicycode-rcov"
49
- end
25
+ # ///////////////////////////////////////////////////////////
26
+ # Running Specs
27
+ # ///////////////////////////////////////////////////////////
28
+ desc "Run all specs"
29
+ task :spec do |t|
30
+ system SPEC_SCRIPT
50
31
  end
51
32
 
52
- task :spec => :check_dependencies
53
-
54
- begin
55
- require 'reek/adapters/rake_task'
56
- Reek::RakeTask.new do |t|
57
- t.fail_on_error = true
58
- t.verbose = false
59
- t.source_files = 'lib/**/*.rb'
60
- end
61
- rescue LoadError
62
- task :reek do
63
- abort "Reek is not available. In order to run reek, you must: sudo gem install reek"
64
- end
33
+ desc "Run specs in all rubies (both ParseTree & static scanner modes)"
34
+ task :'spec:all' do
35
+ system 'export MUTE_BACON=true; rvm ' +
36
+ RUBIES.values.flatten.join(',') + ' exec ' + SPEC_SCRIPT
65
37
  end
66
38
 
67
- begin
68
- require 'roodi'
69
- require 'roodi_task'
70
- RoodiTask.new do |t|
71
- t.verbose = false
72
- end
73
- rescue LoadError
74
- task :roodi do
75
- abort "Roodi is not available. In order to run roodi, you must: sudo gem install roodi"
76
- end
39
+ desc "Run specs in rubies supporting ParseTree mode"
40
+ task :'spec:parsetree' do
41
+ system 'export MUTE_BACON=true; rvm ' +
42
+ RUBIES[:parsetree].join(',') + ' exec ' + SPEC_SCRIPT
77
43
  end
78
44
 
79
- task :default => :spec
80
-
81
- require 'rake/rdoctask'
82
- Rake::RDocTask.new do |rdoc|
83
- version = File.exist?('VERSION') ? File.read('VERSION') : ""
84
-
85
- rdoc.rdoc_dir = 'rdoc'
86
- rdoc.title = "sourcify #{version}"
87
- rdoc.rdoc_files.include('README*')
88
- rdoc.rdoc_files.include('lib/**/*.rb')
45
+ desc "Run specs in rubies supporting static scanner mode"
46
+ task :'spec:static' do
47
+ system 'export MUTE_BACON=true; rvm ' +
48
+ RUBIES[:static].join(',') + ' exec ' + SPEC_SCRIPT
89
49
  end
90
50
 
51
+ # ///////////////////////////////////////////////////////////
91
52
  # Benchmarking
53
+ # ///////////////////////////////////////////////////////////
54
+ desc "Benchmarking"
92
55
  task :benchmark, :task, :times do |t, args|
93
56
  times, task = (args.times || 5).to_i.method(:times), args.task
94
57
  title = " ~ Benchmark Results for Task :#{task} ~ "
@@ -112,5 +75,5 @@ task :benchmark, :task, :times do |t, args|
112
75
  # Showdown .. printout
113
76
  line = '=' * ([title.size, formatted_results.map(&:size).max].max + 2)
114
77
  puts [line, title, formatted_results.join("\n"), line].join("\n\n")
115
-
116
78
  end
79
+
@@ -1,14 +1,14 @@
1
1
  require 'rubygems'
2
2
  require 'ruby2ruby'
3
3
  require 'sexp_processor'
4
+ require 'ruby_parser'
5
+ require 'file/tail'
4
6
 
5
7
  begin
6
8
  require 'parse_tree'
7
9
  require 'parse_tree_extensions'
8
10
  rescue LoadError
9
- raise if RUBY_VERSION == '1.8.6' # support for code scanner in 1.8.6 is too tedious
10
- require 'ruby_parser'
11
- require 'file/tail'
11
+ # ParseTree is now optional for all supported rubies :)
12
12
  end
13
13
 
14
14
  module Sourcify #:nodoc:
@@ -26,4 +26,6 @@ module Sourcify #:nodoc:
26
26
  end
27
27
  end
28
28
 
29
+ Sourcify.require_rb('facets')
30
+ Sourcify.require_rb('version')
29
31
  Sourcify.require_rb('proc')
@@ -0,0 +1,28 @@
1
+ if RUBY_VERSION.include?('1.8.6')
2
+
3
+ unless 1.respond_to?(:pred)
4
+ class Integer
5
+ def pred
6
+ self - 1
7
+ end
8
+ end
9
+ end
10
+
11
+ unless :a.respond_to?(:to_proc)
12
+ class Symbol
13
+ def to_proc
14
+ Proc.new{|*args| args.shift.__send__(self, *args)}
15
+ end
16
+ end
17
+ end
18
+
19
+ end
20
+
21
+ unless binding.respond_to?(:has_local_variable?)
22
+ class Binding
23
+ def has_local_variable?(name)
24
+ check_str = "local_variables.include?(#{name})"
25
+ self.eval(check_str) rescue eval(check_str, self)
26
+ end
27
+ end
28
+ end
@@ -12,6 +12,7 @@ module Sourcify
12
12
  base.class_eval do
13
13
  Sourcify.require_rb('proc', 'methods')
14
14
  include Methods::SourceLocation
15
+ include Methods::ToRawSource
15
16
  include Methods::ToSource
16
17
  include Methods::ToSexp
17
18
  end
@@ -58,9 +59,13 @@ module Sourcify
58
59
  end
59
60
 
60
61
  ###
61
- # Returns the code representation of this proc.
62
+ # Returns the code representation of this proc. Unlike Proc#to_raw_source, the
63
+ # returned code retains only the functional aspects, fluff like comments are
64
+ # stripped off.
62
65
  #
63
- # lambda {|i| i+1 }.to_source
66
+ # lambda do |i|
67
+ # i+1 # (blah)
68
+ # end.to_source
64
69
  # # >> "proc {|i| i+1 }"
65
70
  #
66
71
  # The following options are supported:
@@ -153,6 +158,22 @@ module Sourcify
153
158
  # NOTE: this is a stub for the actual one in Methods::ToSexp
154
159
  end
155
160
 
161
+ ###
162
+ # Returns the raw code enclosed within this proc.
163
+ #
164
+ # lambda do |i|
165
+ # i+1 # (blah)
166
+ # end.to_source
167
+ # # >> "proc do |i|
168
+ # # >> i+1 # (blah)
169
+ # # >> end"
170
+ #
171
+ # NOTE: The options supported are the same as those for Proc#to_source.
172
+ #
173
+ def to_raw_source(opts={}, &body_matcher)
174
+ # NOTE: this is a stub for the actual one in Methods::ToRawSource
175
+ end
176
+
156
177
  end
157
178
 
158
179
  end
@@ -1,3 +1,3 @@
1
- %w{source_location to_source to_sexp}.each do |file|
1
+ %w{source_location to_source to_sexp to_raw_source}.each do |file|
2
2
  Sourcify.require_rb('proc', 'methods', file)
3
3
  end
@@ -0,0 +1,20 @@
1
+ module Sourcify
2
+ module Proc
3
+ module Methods #:nodoc:all
4
+ module ToRawSource
5
+ def self.included(base)
6
+ base.class_eval do
7
+
8
+ Sourcify.require_rb('proc', 'parser')
9
+
10
+ def to_raw_source(opts = {}, &body_matcher)
11
+ (@sourcified_parser ||= Parser.new(self)).
12
+ raw_source(opts.merge(:body_matcher => body_matcher))
13
+ end
14
+
15
+ end
16
+ end
17
+ end
18
+ end
19
+ end
20
+ end
@@ -22,15 +22,22 @@ module Sourcify
22
22
 
23
23
  def sexp(opts)
24
24
  (@sexps ||= {})[opts.hash] ||= (
25
- raw_sexp = Converter.to_sexp(raw_source(opts), @source_code.file)
25
+ raw_code = ("\n" * @source_code.line) + extracted_source(opts)
26
+ raw_sexp = Converter.to_sexp(raw_code, @source_code.file)
26
27
  sexp = Normalizer.process(raw_sexp, @binding)
27
28
  opts[:strip_enclosure] ? Sexp.from_array(sexp.to_a.last) : sexp
28
29
  )
29
30
  end
30
31
 
32
+ def raw_source(opts)
33
+ raw_code = extracted_source(opts).strip
34
+ opts[:strip_enclosure] ?
35
+ raw_code.sub(/^proc\s*(\{|do)\s*(\|[^\|]+\|)?(.*)(\}|end)$/m, '\3').strip : raw_code
36
+ end
37
+
31
38
  private
32
39
 
33
- def raw_source(opts)
40
+ def extracted_source(opts)
34
41
  CodeScanner.process(@source_code, opts) do |code|
35
42
  begin
36
43
  eval(code).arity == @arity
@@ -13,7 +13,7 @@ module Sourcify
13
13
  }).flatten.select(&matcher)
14
14
  case results.size
15
15
  when 0 then raise NoMatchingProcError
16
- when 1 then ("\n" * source_code.line) + results[0]
16
+ when 1 then results[0]
17
17
  else raise MultipleMatchingProcsPerLineError
18
18
  end
19
19
  end
@@ -32,8 +32,8 @@ module Sourcify
32
32
  end
33
33
 
34
34
  def bounded_var?(var)
35
- qvar = (@q ||= (IS_19x ? ":%s" : "'%s'")) % var
36
- @binding.eval("local_variables.include?(#{qvar})")
35
+ lvar = (@q ||= (IS_19x ? ":%s" : "'%s'")) % var
36
+ @binding.has_local_variable?(lvar)
37
37
  end
38
38
 
39
39
  end
@@ -1,5 +1,5 @@
1
1
 
2
- # line 1 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2
+ # line 1 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
3
3
  Sourcify.require_rb('proc', 'scanner', 'extensions')
4
4
 
5
5
  module Sourcify
@@ -7,10 +7,10 @@ module Sourcify
7
7
  module Scanner #:nodoc:all
8
8
 
9
9
 
10
- # line 471 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
10
+ # line 471 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
11
11
 
12
12
 
13
- # line 2 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
13
+ # line 2 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
14
14
  class << self
15
15
  attr_accessor :_proc_scanner_actions
16
16
  private :_proc_scanner_actions, :_proc_scanner_actions=
@@ -876,7 +876,7 @@ end
876
876
  self.proc_scanner_en_main = 224;
877
877
 
878
878
 
879
- # line 473 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
879
+ # line 473 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
880
880
 
881
881
  extend Scanner::Extensions
882
882
 
@@ -884,7 +884,7 @@ self.proc_scanner_en_main = 224;
884
884
  data = @data
885
885
  eof = data.length
886
886
 
887
- # line 2 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
887
+ # line 2 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
888
888
  begin
889
889
  p ||= 0
890
890
  pe ||= data.length
@@ -894,9 +894,9 @@ begin
894
894
  act = 0
895
895
  end
896
896
 
897
- # line 480 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
897
+ # line 480 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
898
898
 
899
- # line 2 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
899
+ # line 2 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
900
900
  begin
901
901
  _klen, _trans, _keys, _acts, _nacts = nil
902
902
  _goto_level = 0
@@ -930,7 +930,7 @@ begin
930
930
  begin
931
931
  ts = p
932
932
  end
933
- # line 2 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
933
+ # line 2 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
934
934
  end # from state action switch
935
935
  end
936
936
  if _trigger_goto
@@ -1003,7 +1003,7 @@ when 3 then
1003
1003
  te = p+1
1004
1004
  end
1005
1005
  when 4 then
1006
- # line 47 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1006
+ # line 47 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1007
1007
  begin
1008
1008
  te = p+1
1009
1009
  begin
@@ -1019,7 +1019,7 @@ te = p+1
1019
1019
  end
1020
1020
  end
1021
1021
  when 5 then
1022
- # line 56 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1022
+ # line 56 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1023
1023
  begin
1024
1024
  te = p+1
1025
1025
  begin
@@ -1035,7 +1035,7 @@ te = p+1
1035
1035
  end
1036
1036
  end
1037
1037
  when 6 then
1038
- # line 63 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1038
+ # line 63 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1039
1039
  begin
1040
1040
  te = p+1
1041
1041
  begin p = p - 1; begin
@@ -1047,7 +1047,7 @@ te = p+1
1047
1047
  end
1048
1048
  end
1049
1049
  when 7 then
1050
- # line 56 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1050
+ # line 56 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1051
1051
  begin
1052
1052
  te = p
1053
1053
  p = p - 1; begin
@@ -1063,13 +1063,13 @@ p = p - 1; begin
1063
1063
  end
1064
1064
  end
1065
1065
  when 8 then
1066
- # line 62 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1066
+ # line 62 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1067
1067
  begin
1068
1068
  te = p
1069
1069
  p = p - 1; begin push(:space, ts, te) end
1070
1070
  end
1071
1071
  when 9 then
1072
- # line 63 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1072
+ # line 63 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1073
1073
  begin
1074
1074
  te = p
1075
1075
  p = p - 1; begin p = p - 1; begin
@@ -1081,7 +1081,7 @@ p = p - 1; begin p = p - 1; begin
1081
1081
  end
1082
1082
  end
1083
1083
  when 10 then
1084
- # line 56 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1084
+ # line 56 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1085
1085
  begin
1086
1086
  begin p = ((te))-1; end
1087
1087
  begin
@@ -1097,7 +1097,7 @@ when 10 then
1097
1097
  end
1098
1098
  end
1099
1099
  when 11 then
1100
- # line 63 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1100
+ # line 63 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1101
1101
  begin
1102
1102
  begin p = ((te))-1; end
1103
1103
  begin p = p - 1; begin
@@ -1109,7 +1109,7 @@ when 11 then
1109
1109
  end
1110
1110
  end
1111
1111
  when 12 then
1112
- # line 69 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1112
+ # line 69 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1113
1113
  begin
1114
1114
  act = 5; end
1115
1115
  when 13 then
@@ -1139,11 +1139,11 @@ end
1139
1139
  end
1140
1140
  end
1141
1141
  when 14 then
1142
- # line 77 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1142
+ # line 77 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1143
1143
  begin
1144
1144
  act = 6; end
1145
1145
  when 15 then
1146
- # line 77 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1146
+ # line 77 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1147
1147
  begin
1148
1148
  te = p
1149
1149
  p = p - 1; begin
@@ -1186,7 +1186,7 @@ end
1186
1186
  end
1187
1187
  end
1188
1188
  when 17 then
1189
- # line 86 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1189
+ # line 86 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1190
1190
  begin
1191
1191
  te = p
1192
1192
  p = p - 1; begin
@@ -1202,15 +1202,15 @@ p = p - 1; begin
1202
1202
  end
1203
1203
  end
1204
1204
  when 18 then
1205
- # line 142 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1205
+ # line 142 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1206
1206
  begin
1207
1207
  act = 10; end
1208
1208
  when 19 then
1209
- # line 171 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1209
+ # line 171 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1210
1210
  begin
1211
1211
  act = 37; end
1212
1212
  when 20 then
1213
- # line 135 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1213
+ # line 135 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1214
1214
  begin
1215
1215
  te = p+1
1216
1216
  begin
@@ -1225,7 +1225,7 @@ te = p+1
1225
1225
  end
1226
1226
  end
1227
1227
  when 21 then
1228
- # line 141 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1228
+ # line 141 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1229
1229
  begin
1230
1230
  te = p+1
1231
1231
  begin push_dstring(ts, te); begin
@@ -1237,7 +1237,7 @@ te = p+1
1237
1237
  end
1238
1238
  end
1239
1239
  when 22 then
1240
- # line 142 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1240
+ # line 142 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1241
1241
  begin
1242
1242
  te = p+1
1243
1243
  begin push_dstring(ts, te); begin
@@ -1249,7 +1249,7 @@ te = p+1
1249
1249
  end
1250
1250
  end
1251
1251
  when 23 then
1252
- # line 143 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1252
+ # line 143 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1253
1253
  begin
1254
1254
  te = p+1
1255
1255
  begin push_dstring(ts, te); begin
@@ -1261,7 +1261,7 @@ te = p+1
1261
1261
  end
1262
1262
  end
1263
1263
  when 24 then
1264
- # line 144 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1264
+ # line 144 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1265
1265
  begin
1266
1266
  te = p+1
1267
1267
  begin push_dstring(ts, te); begin
@@ -1273,7 +1273,7 @@ te = p+1
1273
1273
  end
1274
1274
  end
1275
1275
  when 25 then
1276
- # line 145 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1276
+ # line 145 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1277
1277
  begin
1278
1278
  te = p+1
1279
1279
  begin push_dstring(ts, te); begin
@@ -1285,7 +1285,7 @@ te = p+1
1285
1285
  end
1286
1286
  end
1287
1287
  when 26 then
1288
- # line 146 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1288
+ # line 146 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1289
1289
  begin
1290
1290
  te = p+1
1291
1291
  begin push_dstring(ts, te); begin
@@ -1297,7 +1297,7 @@ te = p+1
1297
1297
  end
1298
1298
  end
1299
1299
  when 27 then
1300
- # line 147 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1300
+ # line 147 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1301
1301
  begin
1302
1302
  te = p+1
1303
1303
  begin push_dstring(ts, te); begin
@@ -1309,7 +1309,7 @@ te = p+1
1309
1309
  end
1310
1310
  end
1311
1311
  when 28 then
1312
- # line 148 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1312
+ # line 148 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1313
1313
  begin
1314
1314
  te = p+1
1315
1315
  begin push_dstring(ts, te); begin
@@ -1321,7 +1321,7 @@ te = p+1
1321
1321
  end
1322
1322
  end
1323
1323
  when 29 then
1324
- # line 149 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1324
+ # line 149 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1325
1325
  begin
1326
1326
  te = p+1
1327
1327
  begin push_dstring(ts, te); begin
@@ -1333,7 +1333,7 @@ te = p+1
1333
1333
  end
1334
1334
  end
1335
1335
  when 30 then
1336
- # line 150 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1336
+ # line 150 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1337
1337
  begin
1338
1338
  te = p+1
1339
1339
  begin push_dstring(ts, te); begin
@@ -1345,7 +1345,7 @@ te = p+1
1345
1345
  end
1346
1346
  end
1347
1347
  when 31 then
1348
- # line 151 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1348
+ # line 151 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1349
1349
  begin
1350
1350
  te = p+1
1351
1351
  begin push_dstring(ts, te); begin
@@ -1357,7 +1357,7 @@ te = p+1
1357
1357
  end
1358
1358
  end
1359
1359
  when 32 then
1360
- # line 152 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1360
+ # line 152 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1361
1361
  begin
1362
1362
  te = p+1
1363
1363
  begin push_dstring(ts, te); begin
@@ -1369,7 +1369,7 @@ te = p+1
1369
1369
  end
1370
1370
  end
1371
1371
  when 33 then
1372
- # line 153 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1372
+ # line 153 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1373
1373
  begin
1374
1374
  te = p+1
1375
1375
  begin push_dstring(ts, te); begin
@@ -1381,7 +1381,7 @@ te = p+1
1381
1381
  end
1382
1382
  end
1383
1383
  when 34 then
1384
- # line 154 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1384
+ # line 154 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1385
1385
  begin
1386
1386
  te = p+1
1387
1387
  begin push_dstring(ts, te); begin
@@ -1393,7 +1393,7 @@ te = p+1
1393
1393
  end
1394
1394
  end
1395
1395
  when 35 then
1396
- # line 155 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1396
+ # line 155 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1397
1397
  begin
1398
1398
  te = p+1
1399
1399
  begin push_dstring(ts, te); begin
@@ -1405,7 +1405,7 @@ te = p+1
1405
1405
  end
1406
1406
  end
1407
1407
  when 36 then
1408
- # line 156 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1408
+ # line 156 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1409
1409
  begin
1410
1410
  te = p+1
1411
1411
  begin push_dstring(ts, te); begin
@@ -1417,7 +1417,7 @@ te = p+1
1417
1417
  end
1418
1418
  end
1419
1419
  when 37 then
1420
- # line 157 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1420
+ # line 157 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1421
1421
  begin
1422
1422
  te = p+1
1423
1423
  begin push_dstring(ts, te); begin
@@ -1429,7 +1429,7 @@ te = p+1
1429
1429
  end
1430
1430
  end
1431
1431
  when 38 then
1432
- # line 158 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1432
+ # line 158 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1433
1433
  begin
1434
1434
  te = p+1
1435
1435
  begin push_dstring(ts, te); begin
@@ -1441,7 +1441,7 @@ te = p+1
1441
1441
  end
1442
1442
  end
1443
1443
  when 39 then
1444
- # line 159 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1444
+ # line 159 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1445
1445
  begin
1446
1446
  te = p+1
1447
1447
  begin push_dstring(ts, te); begin
@@ -1453,7 +1453,7 @@ te = p+1
1453
1453
  end
1454
1454
  end
1455
1455
  when 40 then
1456
- # line 160 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1456
+ # line 160 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1457
1457
  begin
1458
1458
  te = p+1
1459
1459
  begin push_dstring(ts, te); begin
@@ -1465,7 +1465,7 @@ te = p+1
1465
1465
  end
1466
1466
  end
1467
1467
  when 41 then
1468
- # line 161 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1468
+ # line 161 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1469
1469
  begin
1470
1470
  te = p+1
1471
1471
  begin push_dstring(ts, te); begin
@@ -1477,7 +1477,7 @@ te = p+1
1477
1477
  end
1478
1478
  end
1479
1479
  when 42 then
1480
- # line 162 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1480
+ # line 162 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1481
1481
  begin
1482
1482
  te = p+1
1483
1483
  begin push_dstring(ts, te); begin
@@ -1489,7 +1489,7 @@ te = p+1
1489
1489
  end
1490
1490
  end
1491
1491
  when 43 then
1492
- # line 163 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1492
+ # line 163 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1493
1493
  begin
1494
1494
  te = p+1
1495
1495
  begin push_dstring(ts, te); begin
@@ -1501,7 +1501,7 @@ te = p+1
1501
1501
  end
1502
1502
  end
1503
1503
  when 44 then
1504
- # line 164 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1504
+ # line 164 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1505
1505
  begin
1506
1506
  te = p+1
1507
1507
  begin push_dstring(ts, te); begin
@@ -1513,7 +1513,7 @@ te = p+1
1513
1513
  end
1514
1514
  end
1515
1515
  when 45 then
1516
- # line 165 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1516
+ # line 165 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1517
1517
  begin
1518
1518
  te = p+1
1519
1519
  begin push_dstring(ts, te); begin
@@ -1525,7 +1525,7 @@ te = p+1
1525
1525
  end
1526
1526
  end
1527
1527
  when 46 then
1528
- # line 166 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1528
+ # line 166 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1529
1529
  begin
1530
1530
  te = p+1
1531
1531
  begin push_dstring(ts, te); begin
@@ -1537,7 +1537,7 @@ te = p+1
1537
1537
  end
1538
1538
  end
1539
1539
  when 47 then
1540
- # line 167 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1540
+ # line 167 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1541
1541
  begin
1542
1542
  te = p+1
1543
1543
  begin push_dstring(ts, te); begin
@@ -1549,7 +1549,7 @@ te = p+1
1549
1549
  end
1550
1550
  end
1551
1551
  when 48 then
1552
- # line 168 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1552
+ # line 168 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1553
1553
  begin
1554
1554
  te = p+1
1555
1555
  begin push_dstring(ts, te); begin
@@ -1561,7 +1561,7 @@ te = p+1
1561
1561
  end
1562
1562
  end
1563
1563
  when 49 then
1564
- # line 171 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1564
+ # line 171 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1565
1565
  begin
1566
1566
  te = p+1
1567
1567
  begin
@@ -1576,7 +1576,7 @@ te = p+1
1576
1576
  end
1577
1577
  end
1578
1578
  when 50 then
1579
- # line 135 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1579
+ # line 135 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1580
1580
  begin
1581
1581
  te = p
1582
1582
  p = p - 1; begin
@@ -1591,7 +1591,7 @@ p = p - 1; begin
1591
1591
  end
1592
1592
  end
1593
1593
  when 51 then
1594
- # line 142 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1594
+ # line 142 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1595
1595
  begin
1596
1596
  te = p
1597
1597
  p = p - 1; begin push_dstring(ts, te); begin
@@ -1603,7 +1603,7 @@ p = p - 1; begin push_dstring(ts, te); begin
1603
1603
  end
1604
1604
  end
1605
1605
  when 52 then
1606
- # line 171 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1606
+ # line 171 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1607
1607
  begin
1608
1608
  te = p
1609
1609
  p = p - 1; begin
@@ -1618,7 +1618,7 @@ p = p - 1; begin
1618
1618
  end
1619
1619
  end
1620
1620
  when 53 then
1621
- # line 135 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1621
+ # line 135 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1622
1622
  begin
1623
1623
  begin p = ((te))-1; end
1624
1624
  begin
@@ -1633,7 +1633,7 @@ when 53 then
1633
1633
  end
1634
1634
  end
1635
1635
  when 54 then
1636
- # line 171 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1636
+ # line 171 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1637
1637
  begin
1638
1638
  begin p = ((te))-1; end
1639
1639
  begin
@@ -1675,7 +1675,7 @@ when 55 then
1675
1675
  end
1676
1676
  end
1677
1677
  when 56 then
1678
- # line 179 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1678
+ # line 179 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1679
1679
  begin
1680
1680
  te = p+1
1681
1681
  begin
@@ -1691,7 +1691,7 @@ te = p+1
1691
1691
  end
1692
1692
  end
1693
1693
  when 57 then
1694
- # line 186 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1694
+ # line 186 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1695
1695
  begin
1696
1696
  te = p+1
1697
1697
  begin
@@ -1707,7 +1707,7 @@ te = p+1
1707
1707
  end
1708
1708
  end
1709
1709
  when 58 then
1710
- # line 193 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1710
+ # line 193 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1711
1711
  begin
1712
1712
  te = p+1
1713
1713
  begin
@@ -1723,7 +1723,7 @@ te = p+1
1723
1723
  end
1724
1724
  end
1725
1725
  when 59 then
1726
- # line 200 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1726
+ # line 200 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1727
1727
  begin
1728
1728
  te = p+1
1729
1729
  begin
@@ -1739,7 +1739,7 @@ te = p+1
1739
1739
  end
1740
1740
  end
1741
1741
  when 60 then
1742
- # line 207 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1742
+ # line 207 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1743
1743
  begin
1744
1744
  te = p+1
1745
1745
  begin
@@ -1755,7 +1755,7 @@ te = p+1
1755
1755
  end
1756
1756
  end
1757
1757
  when 61 then
1758
- # line 214 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1758
+ # line 214 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1759
1759
  begin
1760
1760
  te = p+1
1761
1761
  begin
@@ -1771,7 +1771,7 @@ te = p+1
1771
1771
  end
1772
1772
  end
1773
1773
  when 62 then
1774
- # line 221 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1774
+ # line 221 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1775
1775
  begin
1776
1776
  te = p+1
1777
1777
  begin
@@ -1787,7 +1787,7 @@ te = p+1
1787
1787
  end
1788
1788
  end
1789
1789
  when 63 then
1790
- # line 228 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1790
+ # line 228 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1791
1791
  begin
1792
1792
  te = p+1
1793
1793
  begin
@@ -1803,7 +1803,7 @@ te = p+1
1803
1803
  end
1804
1804
  end
1805
1805
  when 64 then
1806
- # line 235 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1806
+ # line 235 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1807
1807
  begin
1808
1808
  te = p+1
1809
1809
  begin
@@ -1819,7 +1819,7 @@ te = p+1
1819
1819
  end
1820
1820
  end
1821
1821
  when 65 then
1822
- # line 242 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1822
+ # line 242 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1823
1823
  begin
1824
1824
  te = p+1
1825
1825
  begin
@@ -1835,7 +1835,7 @@ te = p+1
1835
1835
  end
1836
1836
  end
1837
1837
  when 66 then
1838
- # line 249 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1838
+ # line 249 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1839
1839
  begin
1840
1840
  te = p+1
1841
1841
  begin
@@ -1851,7 +1851,7 @@ te = p+1
1851
1851
  end
1852
1852
  end
1853
1853
  when 67 then
1854
- # line 256 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1854
+ # line 256 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1855
1855
  begin
1856
1856
  te = p+1
1857
1857
  begin
@@ -1867,7 +1867,7 @@ te = p+1
1867
1867
  end
1868
1868
  end
1869
1869
  when 68 then
1870
- # line 263 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1870
+ # line 263 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1871
1871
  begin
1872
1872
  te = p+1
1873
1873
  begin
@@ -1883,7 +1883,7 @@ te = p+1
1883
1883
  end
1884
1884
  end
1885
1885
  when 69 then
1886
- # line 270 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1886
+ # line 270 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1887
1887
  begin
1888
1888
  te = p+1
1889
1889
  begin
@@ -1899,7 +1899,7 @@ te = p+1
1899
1899
  end
1900
1900
  end
1901
1901
  when 70 then
1902
- # line 277 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1902
+ # line 277 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1903
1903
  begin
1904
1904
  te = p+1
1905
1905
  begin
@@ -1915,7 +1915,7 @@ te = p+1
1915
1915
  end
1916
1916
  end
1917
1917
  when 71 then
1918
- # line 284 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1918
+ # line 284 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1919
1919
  begin
1920
1920
  te = p+1
1921
1921
  begin
@@ -1931,7 +1931,7 @@ te = p+1
1931
1931
  end
1932
1932
  end
1933
1933
  when 72 then
1934
- # line 291 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1934
+ # line 291 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1935
1935
  begin
1936
1936
  te = p+1
1937
1937
  begin
@@ -1947,7 +1947,7 @@ te = p+1
1947
1947
  end
1948
1948
  end
1949
1949
  when 73 then
1950
- # line 298 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1950
+ # line 298 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1951
1951
  begin
1952
1952
  te = p+1
1953
1953
  begin
@@ -1963,7 +1963,7 @@ te = p+1
1963
1963
  end
1964
1964
  end
1965
1965
  when 74 then
1966
- # line 305 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1966
+ # line 305 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1967
1967
  begin
1968
1968
  te = p+1
1969
1969
  begin
@@ -1979,7 +1979,7 @@ te = p+1
1979
1979
  end
1980
1980
  end
1981
1981
  when 75 then
1982
- # line 312 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1982
+ # line 312 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1983
1983
  begin
1984
1984
  te = p+1
1985
1985
  begin
@@ -1995,7 +1995,7 @@ te = p+1
1995
1995
  end
1996
1996
  end
1997
1997
  when 76 then
1998
- # line 319 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1998
+ # line 319 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
1999
1999
  begin
2000
2000
  te = p+1
2001
2001
  begin
@@ -2011,7 +2011,7 @@ te = p+1
2011
2011
  end
2012
2012
  end
2013
2013
  when 77 then
2014
- # line 326 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2014
+ # line 326 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2015
2015
  begin
2016
2016
  te = p+1
2017
2017
  begin
@@ -2027,7 +2027,7 @@ te = p+1
2027
2027
  end
2028
2028
  end
2029
2029
  when 78 then
2030
- # line 333 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2030
+ # line 333 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2031
2031
  begin
2032
2032
  te = p+1
2033
2033
  begin
@@ -2043,7 +2043,7 @@ te = p+1
2043
2043
  end
2044
2044
  end
2045
2045
  when 79 then
2046
- # line 340 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2046
+ # line 340 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2047
2047
  begin
2048
2048
  te = p+1
2049
2049
  begin
@@ -2059,7 +2059,7 @@ te = p+1
2059
2059
  end
2060
2060
  end
2061
2061
  when 80 then
2062
- # line 347 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2062
+ # line 347 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2063
2063
  begin
2064
2064
  te = p+1
2065
2065
  begin
@@ -2075,7 +2075,7 @@ te = p+1
2075
2075
  end
2076
2076
  end
2077
2077
  when 81 then
2078
- # line 354 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2078
+ # line 354 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2079
2079
  begin
2080
2080
  te = p+1
2081
2081
  begin
@@ -2091,7 +2091,7 @@ te = p+1
2091
2091
  end
2092
2092
  end
2093
2093
  when 82 then
2094
- # line 361 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2094
+ # line 361 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2095
2095
  begin
2096
2096
  te = p+1
2097
2097
  begin
@@ -2107,7 +2107,7 @@ te = p+1
2107
2107
  end
2108
2108
  end
2109
2109
  when 83 then
2110
- # line 368 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2110
+ # line 368 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2111
2111
  begin
2112
2112
  te = p+1
2113
2113
  begin
@@ -2123,23 +2123,23 @@ te = p+1
2123
2123
  end
2124
2124
  end
2125
2125
  when 84 then
2126
- # line 380 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2126
+ # line 380 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2127
2127
  begin
2128
2128
  act = 66; end
2129
2129
  when 85 then
2130
- # line 386 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2130
+ # line 386 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2131
2131
  begin
2132
2132
  act = 67; end
2133
2133
  when 86 then
2134
- # line 421 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2134
+ # line 421 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2135
2135
  begin
2136
2136
  act = 73; end
2137
2137
  when 87 then
2138
- # line 460 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2138
+ # line 460 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2139
2139
  begin
2140
2140
  act = 79; end
2141
2141
  when 88 then
2142
- # line 393 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2142
+ # line 393 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2143
2143
  begin
2144
2144
  te = p+1
2145
2145
  begin
@@ -2148,7 +2148,7 @@ te = p+1
2148
2148
  end
2149
2149
  end
2150
2150
  when 89 then
2151
- # line 398 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2151
+ # line 398 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2152
2152
  begin
2153
2153
  te = p+1
2154
2154
  begin
@@ -2157,7 +2157,7 @@ te = p+1
2157
2157
  end
2158
2158
  end
2159
2159
  when 90 then
2160
- # line 403 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2160
+ # line 403 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2161
2161
  begin
2162
2162
  te = p+1
2163
2163
  begin
@@ -2166,7 +2166,7 @@ te = p+1
2166
2166
  end
2167
2167
  end
2168
2168
  when 91 then
2169
- # line 408 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2169
+ # line 408 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2170
2170
  begin
2171
2171
  te = p+1
2172
2172
  begin
@@ -2175,7 +2175,7 @@ te = p+1
2175
2175
  end
2176
2176
  end
2177
2177
  when 92 then
2178
- # line 421 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2178
+ # line 421 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2179
2179
  begin
2180
2180
  te = p+1
2181
2181
  begin
@@ -2190,7 +2190,7 @@ te = p+1
2190
2190
  end
2191
2191
  end
2192
2192
  when 93 then
2193
- # line 428 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2193
+ # line 428 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2194
2194
  begin
2195
2195
  te = p+1
2196
2196
  begin
@@ -2204,7 +2204,7 @@ te = p+1
2204
2204
  end
2205
2205
  end
2206
2206
  when 94 then
2207
- # line 432 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2207
+ # line 432 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2208
2208
  begin
2209
2209
  te = p+1
2210
2210
  begin
@@ -2220,7 +2220,7 @@ te = p+1
2220
2220
  end
2221
2221
  end
2222
2222
  when 95 then
2223
- # line 440 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2223
+ # line 440 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2224
2224
  begin
2225
2225
  te = p+1
2226
2226
  begin
@@ -2236,7 +2236,7 @@ te = p+1
2236
2236
  end
2237
2237
  end
2238
2238
  when 96 then
2239
- # line 446 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2239
+ # line 446 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2240
2240
  begin
2241
2241
  te = p+1
2242
2242
  begin
@@ -2250,7 +2250,7 @@ te = p+1
2250
2250
  end
2251
2251
  end
2252
2252
  when 97 then
2253
- # line 450 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2253
+ # line 450 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2254
2254
  begin
2255
2255
  te = p+1
2256
2256
  begin
@@ -2268,25 +2268,25 @@ te = p+1
2268
2268
  end
2269
2269
  end
2270
2270
  when 98 then
2271
- # line 461 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2271
+ # line 461 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2272
2272
  begin
2273
2273
  te = p+1
2274
2274
  begin push(:bslash, ts, te) end
2275
2275
  end
2276
2276
  when 99 then
2277
- # line 465 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2277
+ # line 465 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2278
2278
  begin
2279
2279
  te = p+1
2280
2280
  begin push(:digit, ts, te) end
2281
2281
  end
2282
2282
  when 100 then
2283
- # line 467 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2283
+ # line 467 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2284
2284
  begin
2285
2285
  te = p+1
2286
2286
  begin push(:any, ts, te) end
2287
2287
  end
2288
2288
  when 101 then
2289
- # line 408 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2289
+ # line 408 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2290
2290
  begin
2291
2291
  te = p
2292
2292
  p = p - 1; begin
@@ -2295,7 +2295,7 @@ p = p - 1; begin
2295
2295
  end
2296
2296
  end
2297
2297
  when 102 then
2298
- # line 415 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2298
+ # line 415 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2299
2299
  begin
2300
2300
  te = p
2301
2301
  p = p - 1; begin
@@ -2311,7 +2311,7 @@ p = p - 1; begin
2311
2311
  end
2312
2312
  end
2313
2313
  when 103 then
2314
- # line 421 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2314
+ # line 421 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2315
2315
  begin
2316
2316
  te = p
2317
2317
  p = p - 1; begin
@@ -2326,37 +2326,37 @@ p = p - 1; begin
2326
2326
  end
2327
2327
  end
2328
2328
  when 104 then
2329
- # line 460 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2329
+ # line 460 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2330
2330
  begin
2331
2331
  te = p
2332
2332
  p = p - 1; begin push(:var, ts, te) end
2333
2333
  end
2334
2334
  when 105 then
2335
- # line 462 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2335
+ # line 462 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2336
2336
  begin
2337
2337
  te = p
2338
2338
  p = p - 1; begin push(:const, ts, te) end
2339
2339
  end
2340
2340
  when 106 then
2341
- # line 463 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2341
+ # line 463 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2342
2342
  begin
2343
2343
  te = p
2344
2344
  p = p - 1; begin push(:symbol, ts, te) end
2345
2345
  end
2346
2346
  when 107 then
2347
- # line 464 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2347
+ # line 464 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2348
2348
  begin
2349
2349
  te = p
2350
2350
  p = p - 1; begin push(:space, ts, te) end
2351
2351
  end
2352
2352
  when 108 then
2353
- # line 467 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2353
+ # line 467 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2354
2354
  begin
2355
2355
  te = p
2356
2356
  p = p - 1; begin push(:any, ts, te) end
2357
2357
  end
2358
2358
  when 109 then
2359
- # line 408 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2359
+ # line 408 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2360
2360
  begin
2361
2361
  begin p = ((te))-1; end
2362
2362
  begin
@@ -2365,7 +2365,7 @@ when 109 then
2365
2365
  end
2366
2366
  end
2367
2367
  when 110 then
2368
- # line 415 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2368
+ # line 415 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2369
2369
  begin
2370
2370
  begin p = ((te))-1; end
2371
2371
  begin
@@ -2381,13 +2381,13 @@ when 110 then
2381
2381
  end
2382
2382
  end
2383
2383
  when 111 then
2384
- # line 463 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2384
+ # line 463 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2385
2385
  begin
2386
2386
  begin p = ((te))-1; end
2387
2387
  begin push(:symbol, ts, te) end
2388
2388
  end
2389
2389
  when 112 then
2390
- # line 467 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2390
+ # line 467 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2391
2391
  begin
2392
2392
  begin p = ((te))-1; end
2393
2393
  begin push(:any, ts, te) end
@@ -2432,7 +2432,7 @@ when 113 then
2432
2432
  push(:var, ts, te) end
2433
2433
  end
2434
2434
  end
2435
- # line 2 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
2435
+ # line 2 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
2436
2436
  end # action switch
2437
2437
  end
2438
2438
  end
@@ -2457,7 +2457,7 @@ when 1 then
2457
2457
  begin
2458
2458
  act = 0
2459
2459
  end
2460
- # line 2 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
2460
+ # line 2 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rb"
2461
2461
  end # to state action switch
2462
2462
  end
2463
2463
  if _trigger_goto
@@ -2488,7 +2488,7 @@ end
2488
2488
  end
2489
2489
  end
2490
2490
 
2491
- # line 481 "/home/ty/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2491
+ # line 481 "/home/ty.archlinux/dev/ty/sourcify/spec/../lib/sourcify/proc/scanner.rl"
2492
2492
  end
2493
2493
 
2494
2494
  end