[ruby/error_highlight] Add some comments

https://github.com/ruby/error_highlight/commit/e0c90c72c3
This commit is contained in:
Yusuke Endoh 2021-06-30 11:44:48 +09:00 коммит произвёл git
Родитель 3391682eda
Коммит db7e9b1aac
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -1,5 +1,8 @@
module ErrorHighlight
module CoreExt
# This is a marker to let `DidYouMean::Correctable#original_message` skip
# the following method definition of `to_s`.
# See https://github.com/ruby/did_you_mean/pull/152
SKIP_TO_S_FOR_SUPER_LOOKUP = true
private_constant :SKIP_TO_S_FOR_SUPER_LOOKUP
@ -42,7 +45,8 @@ module ErrorHighlight
NameError.prepend(CoreExt)
# temporarily disabled
# The extension for TypeError/ArgumentError is temporarily disabled due to many test failures
#TypeError.prepend(CoreExt)
#ArgumentError.prepend(CoreExt)
end