Linux server1.dn-server.com 4.18.0-553.89.1.lve.el8.x86_64 #1 SMP Wed Dec 10 13:58:50 UTC 2025 x86_64
LiteSpeed
Server IP : 195.201.204.189 & Your IP : 216.73.216.37
Domains :
Cant Read [ /etc/named.conf ]
User : beriska1
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
alt /
ruby30 /
share /
gems /
gems /
rbs-1.4.0 /
sig /
Delete
Unzip
Name
Size
Permission
Date
Action
ancestor_builder.rbs
5.29
KB
-rw-r--r--
2024-06-26 17:25
ancestor_graph.rbs
1.27
KB
-rw-r--r--
2024-06-26 17:25
annotation.rbs
518
B
-rw-r--r--
2024-06-26 17:25
buffer.rbs
659
B
-rw-r--r--
2024-06-26 17:25
builtin_names.rbs
795
B
-rw-r--r--
2024-06-26 17:25
char_scanner.rbs
158
B
-rw-r--r--
2024-06-26 17:25
cli.rbs
1.65
KB
-rw-r--r--
2024-06-26 17:25
comment.rbs
529
B
-rw-r--r--
2024-06-26 17:25
constant.rbs
502
B
-rw-r--r--
2024-06-26 17:25
constant_table.rbs
1.09
KB
-rw-r--r--
2024-06-26 17:25
declarations.rbs
7.96
KB
-rw-r--r--
2024-06-26 17:25
definition.rbs
4.43
KB
-rw-r--r--
2024-06-26 17:25
definition_builder.rbs
2.5
KB
-rw-r--r--
2024-06-26 17:25
environment.rbs
3.89
KB
-rw-r--r--
2024-06-26 17:25
environment_loader.rbs
3.65
KB
-rw-r--r--
2024-06-26 17:25
environment_walker.rbs
991
B
-rw-r--r--
2024-06-26 17:25
errors.rbs
6.31
KB
-rw-r--r--
2024-06-26 17:25
location.rbs
4.13
KB
-rw-r--r--
2024-06-26 17:25
locator.rbs
1.56
KB
-rw-r--r--
2024-06-26 17:25
members.rbs
6.63
KB
-rw-r--r--
2024-06-26 17:25
method_builder.rbs
2.86
KB
-rw-r--r--
2024-06-26 17:25
method_types.rbs
805
B
-rw-r--r--
2024-06-26 17:25
namespace.rbs
3.26
KB
-rw-r--r--
2024-06-26 17:25
parser.rbs
1.01
KB
-rw-r--r--
2024-06-26 17:25
polyfill.rbs
378
B
-rw-r--r--
2024-06-26 17:25
rbs.rbs
255
B
-rw-r--r--
2024-06-26 17:25
repository.rbs
2.27
KB
-rw-r--r--
2024-06-26 17:25
substitution.rbs
1.38
KB
-rw-r--r--
2024-06-26 17:25
type_alias_dependency.rbs
585
B
-rw-r--r--
2024-06-26 17:25
type_name_resolver.rbs
618
B
-rw-r--r--
2024-06-26 17:25
typename.rbs
2.03
KB
-rw-r--r--
2024-06-26 17:25
types.rbs
10.12
KB
-rw-r--r--
2024-06-26 17:25
util.rbs
128
B
-rw-r--r--
2024-06-26 17:25
validator.rbs
488
B
-rw-r--r--
2024-06-26 17:25
variance_calculator.rbs
927
B
-rw-r--r--
2024-06-26 17:25
vendorer.rbs
1.43
KB
-rw-r--r--
2024-06-26 17:25
version.rbs
33
B
-rw-r--r--
2024-06-26 17:25
writer.rbs
1.07
KB
-rw-r--r--
2024-06-26 17:25
Save
Rename
module RBS module AST module Members type t = MethodDefinition | InstanceVariable | ClassInstanceVariable | ClassVariable | Include | Extend | Prepend | AttrReader | AttrWriter | AttrAccessor | Public | Private | Alias # Base class for members. class Base end class MethodDefinition < Base type kind = :instance | :singleton | :singleton_instance # def foo: () -> void # ^^^ keyword # ^^^ name # # def self.bar: () -> void | ... # ^^^ keyword # ^^^^^ kind # ^^^ name # ^^^ overload # type loc = Location::WithChildren[:keyword | :name, :kind | :overload] attr_reader name: Symbol attr_reader kind: kind attr_reader types: Array[MethodType] attr_reader annotations: Array[Annotation] attr_reader location: loc? attr_reader comment: Comment? attr_reader overload: bool def initialize: (name: Symbol, kind: kind, types: Array[MethodType], annotations: Array[Annotation], location: loc?, comment: Comment?, overload: boolish) -> void include _HashEqual include _ToJson def instance?: () -> bool def singleton?: () -> bool def overload?: () -> bool def update: (?name: Symbol, ?kind: kind, ?types: Array[MethodType], ?annotations: Array[Annotation], ?location: loc?, ?comment: Comment?, ?overload: boolish) -> MethodDefinition end module Var # @foo: String # ^^^^ name # ^ colon # # self.@all: Array[String] # ^^^^^ kind # ^^^^ name # ^ colon # type loc = Location::WithChildren[:name | :colon, :kind] attr_reader name: Symbol attr_reader type: Types::t attr_reader location: loc? attr_reader comment: Comment? def initialize: (name: Symbol, type: Types::t, location: loc?, comment: Comment?) -> void include _HashEqual end class InstanceVariable < Base include Var include _ToJson end class ClassInstanceVariable < Base include Var include _ToJson end class ClassVariable < Base include Var include _ToJson end module Mixin # include Foo # ^^^^^^^ keyword # ^^^ name # # include Array[String] # ^^^^^^^ keyword # ^^^^^ name # ^ arg_open # ^ arg_close # type loc = Location::WithChildren[:name | :keyword, :args] attr_reader name: TypeName attr_reader args: Array[Types::t] attr_reader annotations: Array[Annotation] attr_reader location: loc? attr_reader comment: Comment? def initialize: (name: TypeName, args: Array[Types::t], annotations: Array[Annotation], location: loc?, comment: Comment?) -> void include _HashEqual end class Include < Base include Mixin include _ToJson end class Extend < Base include Mixin include _ToJson end class Prepend < Base include Mixin include _ToJson end module Attribute type kind = :instance | :singleton # attr_reader name: String # ^^^^^^^^^^^ keyword # ^^^^ name # ^ colon # # attr_accessor self.name (@foo) : String # ^^^^^^^^^^^^^ keyword # ^^^^^ kind # ^^^^ name # ^^^^^^ ivar # ^^^^ ivar_name # ^ colon # type loc = Location::WithChildren[:keyword | :name | :colon, :kind | :ivar | :ivar_name] attr_reader name: Symbol attr_reader type: Types::t attr_reader kind: kind attr_reader ivar_name: Symbol | false | nil attr_reader annotations: Array[Annotation] attr_reader location: loc? attr_reader comment: Comment? def initialize: (name: Symbol, type: Types::t, ivar_name: Symbol | false | nil, kind: kind, annotations: Array[Annotation], location: loc?, comment: Comment?) -> void include _HashEqual def update: (?name: Symbol, ?type: Types::t, ?ivar_name: Symbol | false | nil, ?kind: kind, ?annotations: Array[Annotation], ?location: loc?, ?comment: Comment?) -> instance end class AttrReader < Base include Attribute include _ToJson end class AttrAccessor < Base include Attribute include _ToJson end class AttrWriter < Base include Attribute include _ToJson end module LocationOnly attr_reader location: Location? def initialize: (location: Location?) -> void include _HashEqual end class Public < Base include LocationOnly include _ToJson end class Private < Base include LocationOnly include _ToJson end class Alias < Base type kind = :instance | :singleton # alias foo bar # ^^^^^ keyword # ^^^ new_name # ^^^ old_name # # alias self.foo self.bar # ^^^^^ keyword # ^^^^^ new_kind # ^^^ new_name # ^^^^^ old_kind # ^^^ old_name # type loc = Location::WithChildren[:keyword | :new_name | :old_name, :new_kind | :old_kind] attr_reader new_name: Symbol attr_reader old_name: Symbol attr_reader kind: kind attr_reader annotations: Array[Annotation] attr_reader location: loc? attr_reader comment: Comment? def initialize: (new_name: Symbol, old_name: Symbol, kind: kind, annotations: Array[Annotation], location: loc?, comment: Comment?) -> void include _HashEqual include _ToJson def instance?: () -> bool def singleton?: () -> bool end end end end