Linux premium82.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 : 185.61.154.194 & Your IP : 216.73.216.196
Domains :
Cant Read [ /etc/named.conf ]
User : evicodqw
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby34 /
share /
ruby /
prism /
Delete
Unzip
Name
Size
Permission
Date
Action
parse_result
[ DIR ]
drwxr-xr-x
2025-06-26 09:03
polyfill
[ DIR ]
drwxr-xr-x
2025-06-26 09:03
translation
[ DIR ]
drwxr-xr-x
2025-06-26 09:03
compiler.rb
15.18
KB
-rw-r--r--
2025-05-29 13:39
desugar_compiler.rb
9.87
KB
-rw-r--r--
2025-05-29 13:39
dispatcher.rb
111.23
KB
-rw-r--r--
2025-05-29 13:39
dsl.rb
56.4
KB
-rw-r--r--
2025-05-29 13:39
ffi.rb
18.45
KB
-rw-r--r--
2025-05-29 13:39
inspect_visitor.rb
124.43
KB
-rw-r--r--
2025-05-29 13:39
lex_compat.rb
32.42
KB
-rw-r--r--
2025-05-29 13:39
mutation_compiler.rb
21.08
KB
-rw-r--r--
2025-05-29 13:39
node.rb
585.16
KB
-rw-r--r--
2025-05-29 13:39
node_ext.rb
14.94
KB
-rw-r--r--
2025-05-29 13:39
pack.rb
5.86
KB
-rw-r--r--
2025-05-29 13:39
parse_result.rb
27.79
KB
-rw-r--r--
2025-05-29 13:39
pattern.rb
8.14
KB
-rw-r--r--
2025-05-29 13:39
reflection.rb
28.7
KB
-rw-r--r--
2025-05-29 13:39
relocation.rb
15.1
KB
-rw-r--r--
2025-05-29 13:39
serialize.rb
83.89
KB
-rw-r--r--
2025-05-29 13:39
string_query.rb
755
B
-rw-r--r--
2025-05-29 13:39
translation.rb
449
B
-rw-r--r--
2025-05-29 13:39
visitor.rb
15.4
KB
-rw-r--r--
2025-05-29 13:39
Save
Rename
# frozen_string_literal: true 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