Class: Glaemscribe::API::IfTree::PrePostProcessorOperatorsTerm
- Defined in:
- lib/api/if_tree.rb
Instance Attribute Summary collapse
-
#operators ⇒ Object
Returns the value of attribute operators.
Attributes inherited from Term
Instance Method Summary collapse
-
#initialize(parent_code_block) ⇒ PrePostProcessorOperatorsTerm
constructor
A new instance of PrePostProcessorOperatorsTerm.
- #is_pre_post_processor_operators? ⇒ Boolean
Methods inherited from Term
Constructor Details
#initialize(parent_code_block) ⇒ PrePostProcessorOperatorsTerm
Returns a new instance of PrePostProcessorOperatorsTerm.
66 67 68 69 |
# File 'lib/api/if_tree.rb', line 66 def initialize(parent_code_block) super(parent_code_block) @operators = [] end |
Instance Attribute Details
#operators ⇒ Object
Returns the value of attribute operators.
65 66 67 |
# File 'lib/api/if_tree.rb', line 65 def operators @operators end |
Instance Method Details
#is_pre_post_processor_operators? ⇒ Boolean
70 71 72 |
# File 'lib/api/if_tree.rb', line 70 def is_pre_post_processor_operators? true end |