rubyx/lib/mom/class_compiler.rb
Torsten Ruger daf1b56062 start on class compiler
idea is to get cleaner layer seperation
reduce machine and rework builtin boot
2018-06-30 19:20:17 +03:00

11 lines
168 B
Ruby

module Mom
class ClassCompiler
attr_reader :clazz , :methods
def initialize(clazz , methods)
@clazz = clazz
@methods = methods
end
end
end