cleaning out stash

most of the stuff is now reimplemented
fragments still open (as interpreter is not working yet)
This commit is contained in:
Torsten Ruger
2018-03-19 16:25:27 +05:30
parent 7953ef3e39
commit 28ae1de59f
80 changed files with 0 additions and 2561 deletions

17
stash/fragments/helper.rb Normal file
View File

@@ -0,0 +1,17 @@
require_relative '../helper'
require "risc/interpreter"
require "parser/ruby22"
module Rubyx
module RubyxTests
include CompilerHelper
include Risc::InterpreterHelpers
subs = ObjectSpace.each_object(Class).select { |klass| klass < Risc::Instruction }
subs.each do |clazz|
name = clazz.to_s
next if name.include?("Arm")
scoped = name.split("::").last
module_eval "#{scoped} = #{name}"
end
end
end