summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-05 23:54:17 +0000
committernobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2016-11-05 23:54:17 +0000
commit1b95e8ef9cbc352b267dd187d87a1bd979d95a98 (patch)
tree7fbab50bca04b3a6d2610769d641d154f14dd7d5
parentf0e2194b0d5bce3363ccb064e0fbec3e3116f213 (diff)
e2mmap.rb: suppress a warning
* lib/e2mmap.rb (bind): eval with the location. undefine predefined method before overwriting to suppress a warning. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56615 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--lib/e2mmap.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/e2mmap.rb b/lib/e2mmap.rb
index bbff4f8c2e..e9cbd6a63d 100644
--- a/lib/e2mmap.rb
+++ b/lib/e2mmap.rb
@@ -62,16 +62,20 @@ module Exception2MessageMapper
end
def bind(cl)
- self.module_eval %[
+ self.module_eval "#{<<-"begin;"}\n#{<<-"end;"}", __FILE__, __LINE__+1
+ begin;
def Raise(err = nil, *rest)
Exception2MessageMapper.Raise(self.class, err, *rest)
end
alias Fail Raise
+ class << self
+ undef included
+ end
def self.included(mod)
mod.extend Exception2MessageMapper
end
- ]
+ end;
end
# Fail(err, *rest)