require_relative "helper" class IfTest < MiniTest::Test include Ticker include Compiling def setup @string_input = < :Integer} , s(:statements, s(:if_statement, :zero, s(:condition, s(:operator_value, :-, s(:name, :n), s(:int, 12))), s(:true_statements, s(:call, s(:name, :putstring), s(:arguments), s(:receiver, s(:string, "then")))), s(:false_statements, s(:call, s(:name, :putstring), s(:arguments), s(:receiver, s(:string, "else")))))) end def test_if #show_ticks # get output of what is check_chain ["Branch","Label","LoadConstant","GetSlot","RegToSlot", "LoadConstant","RegToSlot","FunctionCall","Label","GetSlot", "GetSlot","RegToSlot","LoadConstant","RegToSlot","LoadConstant", "RegToSlot","LoadConstant","RegToSlot","LoadConstant","RegToSlot", "RegisterTransfer","FunctionCall","Label","GetSlot","LoadConstant", "OperatorInstruction","IsZero","GetSlot","LoadConstant","RegToSlot", "LoadConstant","RegToSlot","LoadConstant","RegToSlot","LoadConstant", "RegToSlot","RegisterTransfer","FunctionCall","Label","GetSlot", "GetSlot","RegisterTransfer","Syscall","RegisterTransfer","RegisterTransfer", "RegToSlot","Label","FunctionReturn","RegisterTransfer","GetSlot", "GetSlot","Branch","Label","Label","FunctionReturn", "RegisterTransfer","GetSlot","GetSlot","Label","FunctionReturn", "RegisterTransfer","Syscall","NilClass"] end end