REDROOM
PHP 8.3.31
Path:
Logout
Edit File
Size: 1.38 KB
Close
/proc/thread-self/root/opt/alt/ruby32/share/ruby/error_highlight/core_ext.rb
Text
Base64
require_relative "formatter" module ErrorHighlight module CoreExt private def generate_snippet spot = ErrorHighlight.spot(self) return "" unless spot return ErrorHighlight.formatter.message_for(spot) end if Exception.method_defined?(:detailed_message) def detailed_message(highlight: false, error_highlight: true, **) return super unless error_highlight snippet = generate_snippet if highlight snippet = snippet.gsub(/.+/) { "\e[1m" + $& + "\e[m" } end super + snippet end else # 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 def to_s msg = super snippet = generate_snippet if snippet != "" && !msg.include?(snippet) msg + snippet else msg end end end end NameError.prepend(CoreExt) if Exception.method_defined?(:detailed_message) # ErrorHighlight is enabled for TypeError and ArgumentError only when Exception#detailed_message is available. # This is because changing ArgumentError#message is highly incompatible. TypeError.prepend(CoreExt) ArgumentError.prepend(CoreExt) end end
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 0 × Files: 4
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
base.rb
13.88 KB
lrw-r--r--
2026-04-07 14:12:49
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
core_ext.rb
1.38 KB
lrw-r--r--
2026-04-07 14:12:49
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
formatter.rb
638 B
lrw-r--r--
2026-04-07 14:12:49
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
version.rb
46 B
lrw-r--r--
2026-04-07 14:12:49
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).