AlkantarClanX12

Your IP : 3.15.218.234


Current Path : /opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/forwardable/
Upload File :
Current File : //opt/cpanel/ea-ruby27/root/usr/share/ruby/ruby-2.7.8/forwardable/impl.rb

# :stopdoc:
module Forwardable
  def self._valid_method?(method)
    catch {|tag|
      eval("BEGIN{throw tag}; ().#{method}", binding, __FILE__, __LINE__)
    }
  rescue SyntaxError
    false
  else
    true
  end

  def self._compile_method(src, file, line)
    eval(src, nil, file, line)
  end
end