1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

[ruby/error_highlight] Apply ErrorHighlight::CoreExt to TypeError and ArgumentError

https://github.com/ruby/error_highlight/commit/defcaf1beb
This commit is contained in:
Yusuke Endoh 2022-08-19 18:33:33 +09:00 committed by git
parent 17d0e5bee7
commit 6bcb473d9c

View file

@ -37,9 +37,6 @@ module ErrorHighlight
end end
NameError.prepend(CoreExt) NameError.prepend(CoreExt)
TypeError.prepend(CoreExt)
# The extension for TypeError/ArgumentError is temporarily disabled due to many test failures ArgumentError.prepend(CoreExt)
#TypeError.prepend(CoreExt)
#ArgumentError.prepend(CoreExt)
end end