8bf1337043
and pass and fix all tests move towards removing all vm instructions
20 lines
292 B
Ruby
20 lines
292 B
Ruby
require_relative 'helper'
|
|
|
|
class TestBasicClass < MiniTest::Test
|
|
include Fragments
|
|
|
|
def test_class_basic
|
|
@string_input = <<HERE
|
|
class Bar
|
|
int buh()
|
|
return 1
|
|
end
|
|
end
|
|
HERE
|
|
@expect = [ [Virtual::MethodEnter] ,[RegisterTransfer,GetSlot,FunctionReturn]]
|
|
check
|
|
end
|
|
|
|
|
|
end
|