summaryrefslogtreecommitdiffhomepage
path: root/mrblib/class.rb
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2016-08-19 14:10:23 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2016-08-19 14:10:23 +0900
commitb2fceae461c8c266136cd881ce7969a05061cada (patch)
treeb28460f4f4a5bb7bdc117b91960d2ec7ff9987ac /mrblib/class.rb
parent67ad1ff11e8f32fda5c5ee401996d88ef6e0657e (diff)
downloadmruby-b2fceae461c8c266136cd881ce7969a05061cada.tar.gz
mruby-b2fceae461c8c266136cd881ce7969a05061cada.zip
renamed class.rb and error.rb to ensure they are read first; ref #3197
Diffstat (limited to 'mrblib/class.rb')
-rw-r--r--mrblib/class.rb11
1 files changed, 0 insertions, 11 deletions
diff --git a/mrblib/class.rb b/mrblib/class.rb
deleted file mode 100644
index 39e0d5091..000000000
--- a/mrblib/class.rb
+++ /dev/null
@@ -1,11 +0,0 @@
-class Module
- # 15.2.2.4.12
- def attr_accessor(*names)
- attr_reader(*names)
- attr_writer(*names)
- end
- # 15.2.2.4.11
- def attr(name)
- attr_reader(name)
- end
-end