summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorYukihiro Matsumoto <[email protected]>2012-06-01 23:58:09 +0900
committerYukihiro Matsumoto <[email protected]>2012-06-01 23:58:09 +0900
commit2d1f303ec27f234f9c02e7d68cd94fed7bc22e83 (patch)
tree16e603131188b7df4a2804cb0cb226608350d301
parenta0b30fc01f828be699af21dae490219c7f864c70 (diff)
downloadmruby-2d1f303ec27f234f9c02e7d68cd94fed7bc22e83.tar.gz
mruby-2d1f303ec27f234f9c02e7d68cd94fed7bc22e83.zip
remove Ruby define send from kernel.rb
-rw-r--r--mrblib/kernel.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/mrblib/kernel.rb b/mrblib/kernel.rb
index de5196482..d881a35cf 100644
--- a/mrblib/kernel.rb
+++ b/mrblib/kernel.rb
@@ -58,16 +58,6 @@ module Kernel
end
##
- # Invoke the method with the name +symbol+ on
- # the receiver and pass +args+ and the given
- # block.
- #
- # ISO 15.3.1.3.44
- #def send(symbol, *args, &block)
- ### *** TODO *** ###
- #end
-
- ##
# Print arguments
#
# ISO 15.3.1.2.10