remove Ruby defined Class#new

parent b12d9a87
class Class
def new(*args,&b)
obj = self.alloc
obj.initialize(*args,&b)
obj
end
end
class Module
# 15.2.2.4.13
def attr_reader(*names)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment