Class: Kumi::Core::Analyzer::Structs::InputMeta
- Inherits:
-
Struct
- Object
- Struct
- Kumi::Core::Analyzer::Structs::InputMeta
- Defined in:
- lib/kumi/core/analyzer/structs/input_meta.rb
Overview
Represents metadata for a single input field produced by InputCollector
Instance Attribute Summary collapse
-
#access_mode ⇒ Object
Returns the value of attribute access_mode.
-
#children ⇒ Object
Returns the value of attribute children.
-
#consume_alias ⇒ Object
Returns the value of attribute consume_alias.
-
#container ⇒ Object
Returns the value of attribute container.
-
#domain ⇒ Object
Returns the value of attribute domain.
-
#enter_via ⇒ Object
Returns the value of attribute enter_via.
-
#type ⇒ Object
Returns the value of attribute type.
Instance Method Summary collapse
Instance Attribute Details
#access_mode ⇒ Object
Returns the value of attribute access_mode
8 9 10 |
# File 'lib/kumi/core/analyzer/structs/input_meta.rb', line 8 def access_mode @access_mode end |
#children ⇒ Object
Returns the value of attribute children
8 9 10 |
# File 'lib/kumi/core/analyzer/structs/input_meta.rb', line 8 def children @children end |
#consume_alias ⇒ Object
Returns the value of attribute consume_alias
8 9 10 |
# File 'lib/kumi/core/analyzer/structs/input_meta.rb', line 8 def consume_alias @consume_alias end |
#container ⇒ Object
Returns the value of attribute container
8 9 10 |
# File 'lib/kumi/core/analyzer/structs/input_meta.rb', line 8 def container @container end |
#domain ⇒ Object
Returns the value of attribute domain
8 9 10 |
# File 'lib/kumi/core/analyzer/structs/input_meta.rb', line 8 def domain @domain end |
#enter_via ⇒ Object
Returns the value of attribute enter_via
8 9 10 |
# File 'lib/kumi/core/analyzer/structs/input_meta.rb', line 8 def enter_via @enter_via end |
#type ⇒ Object
Returns the value of attribute type
8 9 10 |
# File 'lib/kumi/core/analyzer/structs/input_meta.rb', line 8 def type @type end |
Instance Method Details
#deep_freeze! ⇒ Object
18 19 20 21 22 23 24 |
# File 'lib/kumi/core/analyzer/structs/input_meta.rb', line 18 def deep_freeze! if children children.each_value(&:deep_freeze!) children.freeze end freeze end |