Module: Funicular::Debug
- Defined in:
- sig/debug.rbs
Class Method Summary collapse
- .all_components ⇒ Array[Funicular::Component]
- .clear_errors ⇒ void
- .component_registry ⇒ Hash[Integer, Funicular::Component]
- .component_tree ⇒ String
- .enabled? ⇒ Boolean
- .error_count ⇒ Integer
- .error_list ⇒ String
- .expose_to_global ⇒ void
- .get_component ⇒ Funicular::Component?
- .get_component_instance_variables ⇒ String
- .get_component_state ⇒ String
- .last_error ⇒ Hash[Symbol, untyped]?
- .register_component ⇒ Integer?
- .report_error ⇒ Hash[Symbol, untyped]?
- .unregister_component ⇒ void
Class Method Details
.all_components ⇒ Array[Funicular::Component]
12 |
# File 'sig/debug.rbs', line 12
def self.all_components: () -> Array[Funicular::Component]
|
.clear_errors ⇒ void
This method returns an undefined value.
18 |
# File 'sig/debug.rbs', line 18
def self.clear_errors: () -> void
|
.component_registry ⇒ Hash[Integer, Funicular::Component]
8 |
# File 'sig/debug.rbs', line 8
def self.component_registry: () -> Hash[Integer, Funicular::Component]
|
.component_tree ⇒ String
13 |
# File 'sig/debug.rbs', line 13
def self.component_tree: () -> String
|
.enabled? ⇒ Boolean
7 |
# File 'sig/debug.rbs', line 7
def self.enabled?: () -> bool
|
.error_count ⇒ Integer
21 |
# File 'sig/debug.rbs', line 21
def self.error_count: () -> Integer
|
.error_list ⇒ String
19 |
# File 'sig/debug.rbs', line 19
def self.error_list: () -> String
|
.expose_to_global ⇒ void
This method returns an undefined value.
16 |
# File 'sig/debug.rbs', line 16
def self.expose_to_global: () -> void
|
.get_component ⇒ Funicular::Component?
11 |
# File 'sig/debug.rbs', line 11
def self.get_component: (Integer) -> Funicular::Component?
|
.get_component_instance_variables ⇒ String
15 |
# File 'sig/debug.rbs', line 15
def self.get_component_instance_variables: (Integer) -> String
|
.get_component_state ⇒ String
14 |
# File 'sig/debug.rbs', line 14
def self.get_component_state: (Integer) -> String
|
.last_error ⇒ Hash[Symbol, untyped]?
20 |
# File 'sig/debug.rbs', line 20
def self.last_error: () -> Hash[Symbol, untyped]?
|
.register_component ⇒ Integer?
9 |
# File 'sig/debug.rbs', line 9
def self.register_component: (Funicular::Component) -> Integer?
|
.report_error ⇒ Hash[Symbol, untyped]?
17 |
# File 'sig/debug.rbs', line 17
def self.report_error: (ErrorBoundary boundary, Exception error, ?(Hash[Symbol, Component] | nil) error_info) -> Hash[Symbol, untyped]?
|
.unregister_component ⇒ void
This method returns an undefined value.
10 |
# File 'sig/debug.rbs', line 10
def self.unregister_component: (Integer) -> void
|