2018-03-15 06:54:14 +01:00
|
|
|
module Vool
|
|
|
|
module Normalizer
|
|
|
|
# given a something, determine if it is a Name
|
|
|
|
#
|
|
|
|
# Return a Name, and a possible rest that has a hoisted part of the statement
|
|
|
|
#
|
|
|
|
# eg if( @var % 5) is not normalized
|
|
|
|
# but if(tmp_123) is with tmp_123 = @var % 5 hoited above the if
|
2018-03-15 08:16:56 +01:00
|
|
|
def normalize_name( condition )
|
2018-03-16 14:11:17 +01:00
|
|
|
if( condition.is_a?(ScopeStatement) and condition.single?)
|
|
|
|
condition = condition.first
|
|
|
|
end
|
2018-03-15 07:02:32 +01:00
|
|
|
return [condition] if condition.is_a?(Named)
|
2018-03-16 14:11:17 +01:00
|
|
|
condition = condition.normalize
|
2018-03-15 08:16:56 +01:00
|
|
|
local = "tmp_#{object_id}"
|
|
|
|
assign = Statements.new [LocalAssignment.new( local , condition)]
|
2018-03-15 06:54:14 +01:00
|
|
|
[LocalVariable.new(local) , assign]
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|