From 1b95e8ef9cbc352b267dd187d87a1bd979d95a98 Mon Sep 17 00:00:00 2001 From: nobu Date: Sat, 5 Nov 2016 23:54:17 +0000 Subject: 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 --- lib/e2mmap.rb | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'lib') 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) -- cgit v1.2.3