daf1b56062
idea is to get cleaner layer seperation reduce machine and rework builtin boot
11 lines
168 B
Ruby
11 lines
168 B
Ruby
module Mom
|
|
class ClassCompiler
|
|
attr_reader :clazz , :methods
|
|
|
|
def initialize(clazz , methods)
|
|
@clazz = clazz
|
|
@methods = methods
|
|
end
|
|
end
|
|
end
|