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.217.103
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 # Location is the range on buffer, `start_pos..end_pos`. # The index is based on characters. class Location # The buffer this location points on. attr_reader buffer: Buffer # The index of character the range starts from. attr_reader start_pos: Integer # The index of character the range ends at. attr_reader end_pos: Integer def initialize: (buffer: Buffer, start_pos: Integer, end_pos: Integer) -> void def inspect: () -> String # Returns the name of the buffer. def name: () -> untyped # Line of the `start_pos` (1 origin) def start_line: () -> Integer # Column of the `start_pos` (0 origin) def start_column: () -> Integer # Line of the `end_pos` (1 origin) def end_line: () -> Integer # Column of the `end_pos` (0 origin) def end_column: () -> Integer def start_loc: () -> Buffer::loc def end_loc: () -> Buffer::loc def range: () -> Range[Integer] # A substring of buffer associated to the location. def source: () -> String def to_s: () -> String # Returns a string representation suitable for terminal output. # # Location.to_string(loc) # => a.rb:1:0...3:4 # Location.to_string(nil) # => *:*:*..*:* # def self.to_string: (Location? location, ?default: ::String default) -> String def ==: (untyped other) -> bool # Returns a new location with starting positionof `self` and ending position of `other`. # # l1 = Location.new(buffer: buffer, start_pos: 0, end_pox: x) # l2 = Location.new(buffer: buffer, start_pos: y, end_pos: 20) # l1 + l2 # => Location.new(buffer: buffer, start_pos: 0, end_pos: 20) # def +: (Location other) -> Location # Returns true if `loc` is exact predecessor of `self`. # # l1 = Location.new(...) # 0..10 # l2 = Location.new(...) # 10..13 # l3 = Location.new(...) # 13..20 # # l1.pred?(l2) # => true # l2.pred?(l3) # => true # l1.pred?(l3) # => false # def pred?: (Location loc) -> bool include _ToJson # `<<` locations given as argument. # def concat: (*Location?) -> Location # Inplace version of `+`. # def <<: (Location?) -> Location # Returns WithChildren instance with given children. # # location.with_children( # required: { name: name.location }, # optional: { args: nil } # ) # def with_children: [R, O](?required: Hash[R, Range[Integer] | Location], ?optional: Hash[O, Range[Integer] | Location | nil]) -> WithChildren[R, O] # Location::WithChildren contains _child_ locations. # # # Array[String] # # ^^^^^ <= name # # ^^^^^^^^ <= args # # # # @type var loc: Location::WithChildren[:name, :args] # loc = Location::WithChildren.new(buffer: buffer, start_pos: 0, end_pos: 13) # loc = loc.merge_required({ name: 1...5 }) # loc = loc.merge_optional({ args: 5...13 }) # # loc[:name] # => Location instance for `Array` # loc[:args] # => Location instance for `[String]` # class WithChildren[RequiredChildKeys, OptionalChildKeys] < Location attr_reader required_children: Hash[RequiredChildKeys, Range[Integer]] attr_reader optional_children: Hash[OptionalChildKeys, Range[Integer]?] def initialize: ... def initialize_copy: ... # Returns `Location` instance for given _child_ name. # # # @type var loc: Location::WithChildren[:name, :args] # loc[:name] # => Location # loc[:args] # => may be nil # # Note that passing unknown symbol raises an error even if the child is _optional_. # You need explicitly set `nil` for absent optional children. # def []: (RequiredChildKeys) -> Location | (OptionalChildKeys) -> Location? | (Symbol) -> Location? def merge_required: (Hash[RequiredChildKeys, Range[Integer] | Location]) -> self def merge_optional: (Hash[OptionalChildKeys, Range[Integer] | Location | nil]) -> self end end end