remove dead code
This commit is contained in:
@ -21,8 +21,9 @@ end
|
||||
module MomCompile
|
||||
include CompilerHelper
|
||||
|
||||
def compile_first_method input
|
||||
def compile_first_method( input )
|
||||
# works a lot like Vool.ruby_to_vool
|
||||
# but here we return the intermediate mom instructions that are otherwise not available
|
||||
statements = Vool::RubyCompiler.compile as_test_main( input )
|
||||
statements = statements.normalize
|
||||
res = statements.create_objects
|
||||
@ -33,10 +34,6 @@ module MomCompile
|
||||
res
|
||||
end
|
||||
|
||||
def compile_first_method_flat(input)
|
||||
compile_first_method(input).flatten
|
||||
end
|
||||
|
||||
def check_array( should , is )
|
||||
index = 0
|
||||
test = is
|
||||
|
Reference in New Issue
Block a user