diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-08-15 01:37:29 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2013-08-15 01:37:29 +0900 |
| commit | 954c28504ee6c6f3872b566f6ad4040367072d3e (patch) | |
| tree | ef58b746c0b5d25200b5e0a4a7b8b41dca1a6535 | |
| parent | b12d9a8700ce730da38ec63591944ca6ac6b42ba (diff) | |
| download | mruby-954c28504ee6c6f3872b566f6ad4040367072d3e.tar.gz mruby-954c28504ee6c6f3872b566f6ad4040367072d3e.zip | |
remove Ruby defined Class#new
| -rw-r--r-- | mrblib/class.rb | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/mrblib/class.rb b/mrblib/class.rb index 664eaf3ce..ebfb1f76d 100644 --- a/mrblib/class.rb +++ b/mrblib/class.rb @@ -1,11 +1,3 @@ -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) |
