2019-12-10 14:22:42 +03:00
|
|
|
# encoding: utf-8
|
2020-01-02 06:12:05 +03:00
|
|
|
# frozen-string-literal: true
|
2019-12-10 14:22:42 +03:00
|
|
|
|
|
|
|
module Kernel
|
2019-12-13 14:51:58 +03:00
|
|
|
module_function
|
2019-12-10 14:22:42 +03:00
|
|
|
|
|
|
|
# call-seq:
|
|
|
|
# warn(*msgs, uplevel: nil) -> nil
|
|
|
|
#
|
|
|
|
# If warnings have been disabled (for example with the
|
|
|
|
# <code>-W0</code> flag), does nothing. Otherwise,
|
|
|
|
# converts each of the messages to strings, appends a newline
|
|
|
|
# character to the string if the string does not end in a newline,
|
|
|
|
# and calls Warning.warn with the string.
|
|
|
|
#
|
|
|
|
# warn("warning 1", "warning 2")
|
|
|
|
#
|
|
|
|
# <em>produces:</em>
|
|
|
|
#
|
|
|
|
# warning 1
|
|
|
|
# warning 2
|
|
|
|
#
|
|
|
|
# If the <code>uplevel</code> keyword argument is given, the string will
|
|
|
|
# be prepended with information for the given caller frame in
|
|
|
|
# the same format used by the <code>rb_warn</code> C function.
|
|
|
|
#
|
|
|
|
# # In baz.rb
|
|
|
|
# def foo
|
|
|
|
# warn("invalid call to foo", uplevel: 1)
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# def bar
|
|
|
|
# foo
|
|
|
|
# end
|
|
|
|
#
|
|
|
|
# bar
|
|
|
|
#
|
|
|
|
# <em>produces:</em>
|
|
|
|
#
|
|
|
|
# baz.rb:6: warning: invalid call to foo
|
|
|
|
#
|
|
|
|
def warn(*msgs, uplevel: nil)
|
2020-05-31 09:52:32 +03:00
|
|
|
Primitive.rb_warn_m(msgs, uplevel)
|
2019-12-10 14:22:42 +03:00
|
|
|
end
|
|
|
|
end
|