Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ruby /
syntax_suggest /
Delete
Unzip
Name
Size
Permission
Date
Action
capture
[ DIR ]
drwxr-xr-x
2026-02-18 15:11
api.rb
6.11
KB
-rw-r--r--
2025-10-15 22:19
around_block_scan.rb
6.9
KB
-rw-r--r--
2025-10-15 22:19
block_expand.rb
4.88
KB
-rw-r--r--
2025-10-15 22:19
capture_code_context.rb
6.67
KB
-rw-r--r--
2025-10-15 22:19
clean_document.rb
8.73
KB
-rw-r--r--
2025-10-15 22:19
cli.rb
3.12
KB
-rw-r--r--
2025-10-15 22:19
code_block.rb
2.13
KB
-rw-r--r--
2025-10-15 22:19
code_frontier.rb
5.61
KB
-rw-r--r--
2025-10-15 22:19
code_line.rb
6.62
KB
-rw-r--r--
2025-10-15 22:19
code_search.rb
3.81
KB
-rw-r--r--
2025-10-15 22:19
core_ext.rb
2.65
KB
-rw-r--r--
2025-10-15 22:19
display_code_with_line_numbers.rb
1.77
KB
-rw-r--r--
2025-10-15 22:19
display_invalid_blocks.rb
1.75
KB
-rw-r--r--
2025-10-15 22:19
explain_syntax.rb
2.69
KB
-rw-r--r--
2025-10-15 22:19
left_right_lex_count.rb
4.06
KB
-rw-r--r--
2025-10-15 22:19
lex_all.rb
1.66
KB
-rw-r--r--
2025-10-15 22:19
lex_value.rb
1.5
KB
-rw-r--r--
2025-10-15 22:19
mini_stringio.rb
774
B
-rw-r--r--
2025-10-15 22:19
parse_blocks_from_indent_line.rb
1.5
KB
-rw-r--r--
2025-10-15 22:19
pathname_from_message.rb
1.42
KB
-rw-r--r--
2025-10-15 22:19
priority_engulf_queue.rb
1.26
KB
-rw-r--r--
2025-10-15 22:19
priority_queue.rb
2
KB
-rw-r--r--
2025-10-15 22:19
ripper_errors.rb
960
B
-rw-r--r--
2025-10-15 22:19
scan_history.rb
2.92
KB
-rw-r--r--
2025-10-15 22:19
unvisited_lines.rb
705
B
-rw-r--r--
2025-10-15 22:19
version.rb
76
B
-rw-r--r--
2025-10-15 22:19
Save
Rename
# frozen_string_literal: true module SyntaxSuggest # Capture parse errors from Ripper # # Prism returns the errors with their messages, but Ripper # does not. To get them we must make a custom subclass. # # Example: # # puts RipperErrors.new(" def foo").call.errors # # => ["syntax error, unexpected end-of-input, expecting ';' or '\\n'"] class RipperErrors < Ripper attr_reader :errors # Comes from ripper, called # on every parse error, msg # is a string def on_parse_error(msg) @errors ||= [] @errors << msg end alias_method :on_alias_error, :on_parse_error alias_method :on_assign_error, :on_parse_error alias_method :on_class_name_error, :on_parse_error alias_method :on_param_error, :on_parse_error alias_method :compile_error, :on_parse_error def call @run_once ||= begin @errors = [] parse true end self end end end