ruby2c 1.0.0.9 → 1.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/lib/typed_sexp.rb CHANGED
@@ -1,77 +1,101 @@
1
-
2
1
  begin require 'rubygems'; rescue LoadError; end
3
2
  require 'sexp'
4
3
  require 'type'
5
4
 
6
5
  $TESTING = false unless defined? $TESTING
7
6
 
8
- class TypedSexp < Sexp
7
+ class Sexp
8
+ @@array_types = [ :array, :args ]
9
+
10
+ alias array_type? array_type? # shuts up duplicate method warning
9
11
 
12
+ ##
13
+ # Returns true if the node_type is +array+ or +args+.
14
+
15
+ def array_type?
16
+ type = self.sexp_type
17
+ @@array_types.include? type
18
+ end
19
+ end
20
+
21
+ class TypedSexp < Sexp
10
22
  def ==(obj)
11
23
  case obj
12
24
  when TypedSexp
13
- super && sexp_type == obj.sexp_type
25
+ super && c_type == obj.c_type
14
26
  else
15
27
  false
16
28
  end
17
29
  end
18
30
 
19
- def _set_sexp_type(o)
20
- @sexp_type = o
31
+ def new(*stuff)
32
+ r = super
33
+ r.c_type = self.c_type if self.c_type
34
+ r
35
+ end
36
+
37
+ def _set_c_type(o)
38
+ @c_type = o
21
39
  end
22
40
 
23
41
  def initialize(*args)
24
- # TODO: should probably be Type.unknown
25
- @sexp_type = Type === args.last ? args.pop : nil
42
+ # TODO: should probably be CType.unknown
43
+ @c_type = CType === args.last ? args.pop : nil
26
44
  super(*args)
27
45
  end
28
46
 
29
47
  def inspect
30
48
  sexp_str = self.map {|x|x.inspect}.join(', ')
31
- sexp_type_str = (sexp_str.empty? ? "" : ", ") + "#{array_type? ? sexp_types.inspect : sexp_type}" unless sexp_type.nil?
32
- return "t(#{sexp_str}#{sexp_type_str})"
49
+ c_type_str = (sexp_str.empty? ? "" : ", ") + "#{array_type? ? c_types.inspect : c_type}" unless c_type.nil?
50
+ nnd = ")"
51
+ nnd << ".line(#{line})" if line && ENV["VERBOSE"]
52
+ "t(#{sexp_str}#{c_type_str}#{nnd}"
33
53
  end
34
54
 
35
55
  def pretty_print(q)
36
- q.group(1, 't(', ')') do
56
+ nnd = ")"
57
+ nnd << ".line(#{line})" if line && ENV["VERBOSE"]
58
+
59
+ q.group(1, 't(', nnd) do
37
60
  q.seplist(self) {|v| q.pp v }
38
- unless @sexp_type.nil? then
61
+ unless @c_type.nil? then
39
62
  q.text ", " unless self.empty?
40
- q.pp @sexp_type
63
+ q.pp @c_type
41
64
  end
42
65
  end
43
66
  end
44
67
 
45
- def sexp_type
68
+ def c_type
46
69
  unless array_type? then
47
- @sexp_type
70
+ defined?(@c_type) && @c_type
48
71
  else
49
- types = self.sexp_types.flatten.uniq
72
+ types = self.c_types.flatten.uniq
50
73
 
51
74
  if types.size > 1 then
52
- Type.hetero
75
+ CType.hetero
53
76
  else
54
- Type.homo
77
+ CType.homo
55
78
  end
56
79
  end
57
80
  end
58
81
 
59
- def sexp_type=(o)
60
- raise "You shouldn't call this on an #{first}" if array_type?
82
+ def c_type=(o)
83
+ # HACK raise "You shouldn't call this on an #{first}" if array_type?
84
+ # c_type is different in ruby2c than from sexp_processor. need renames
61
85
  raise "You shouldn't call this a second time, ever" unless
62
- @sexp_type.nil? or @sexp_type == Type.unknown
63
- _set_sexp_type(o)
86
+ @c_type.nil? or @c_type == CType.unknown
87
+ _set_c_type(o)
64
88
  end
65
89
 
66
- def sexp_types
90
+ def c_types
67
91
  raise "You shouldn't call this if not an #{@@array_types.join(' or ')}, was #{first} (#{self.inspect})" unless array_type?
68
- self.grep(Sexp).map { |x| x.sexp_type }
92
+ self.grep(Sexp).map { |x| x.c_type }
69
93
  end
70
94
 
71
95
  def to_a
72
96
  result = super
73
- if defined?(@sexp_type) and not @sexp_type.nil? then
74
- result += [ @sexp_type ]
97
+ if defined?(@c_type) and not @c_type.nil? then
98
+ result += [ @c_type ]
75
99
  end
76
100
  result
77
101
  end