5fe0ba06ab
moving on to getting mom to work and can’t have both interpreter and elf broke, about 100 tests went
13 lines
308 B
Ruby
13 lines
308 B
Ruby
module Vm
|
|
module Tree
|
|
class IfStatement < Statement
|
|
attr_accessor :branch_type , :condition , :if_true , :if_false
|
|
def to_s
|
|
str = "if_#{branch_type}(#{condition}) \n #{if_true}\n"
|
|
str += "else\n #{if_false}\n" if if_false
|
|
str + "end\n"
|
|
end
|
|
end
|
|
end
|
|
end
|