5fe0ba06ab
moving on to getting mom to work and can’t have both interpreter and elf broke, about 100 tests went
12 lines
262 B
Ruby
12 lines
262 B
Ruby
module Vm
|
|
module Tree
|
|
class WhileStatement < Statement
|
|
attr_accessor :branch_type , :condition , :statements
|
|
def to_s
|
|
str = "while_#{branch_type}(#{condition}) do\n"
|
|
str + statements.to_s + "\nend\n"
|
|
end
|
|
end
|
|
end
|
|
end
|