Update NEWS and documents [ci skip]

[Feature #11297] [Feature #16123]
This commit is contained in:
Nobuyoshi Nakada 2019-09-20 02:32:50 +09:00
Родитель e6378cdcd8
Коммит b80df6e8e0
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4BC7D6DF58D8DF60
3 изменённых файлов: 7 добавлений и 3 удалений

3
NEWS
Просмотреть файл

@ -77,6 +77,9 @@ sufficient information, see the ChangeLog file or Redmine
# .bar
.baz # => foo.baz
* Calling a private method with a literal <code>self.</code> as the receiver
is now allowed. [Feature #11297] [Feature #16123]
=== Core classes updates (outstanding ones only)
Complex::

Просмотреть файл

@ -93,7 +93,8 @@ be cached. To call the method, use <code>self.big_calculation</code>.
You can force a method call by using empty argument parentheses as shown above
or by using an explicit receiver like <code>self.</code>. Using an explicit
receiver may raise a NameError if the method's visibility is not public.
receiver may raise a NameError if the method's visibility is not public or the
receiver is the literal <code>self</code>.
Another commonly confusing case is when using a modifier +if+:

Просмотреть файл

@ -191,8 +191,8 @@ Here is an example:
a.n b # raises NoMethodError A is not a subclass of B
The third visibility is +private+. A private method may not be called with a
receiver, not even +self+. If a private method is called with a receiver a
NoMethodError will be raised.
receiver, not even if it equals +self+. If a private method is called with a
receiver other than a literal +self+ a NoMethodError will be raised.
=== +alias+ and +undef+