Class: ImgToScript::AbstractToken::MathGreaterThan
- Inherits:
-
AbstractToken
- Object
- AbstractToken
- ImgToScript::AbstractToken::MathGreaterThan
- Defined in:
- lib/img_to_script/abstract_token/math_greater_than.rb
Overview
left > right.
Instance Attribute Summary collapse
-
#left ⇒ Object
readonly
Returns the value of attribute left.
-
#right ⇒ Object
readonly
Returns the value of attribute right.
Attributes inherited from AbstractToken
Instance Method Summary collapse
-
#initialize(left:, right:) ⇒ MathGreaterThan
constructor
A new instance of MathGreaterThan.
Constructor Details
#initialize(left:, right:) ⇒ MathGreaterThan
Returns a new instance of MathGreaterThan.
11 12 13 14 15 16 17 |
# File 'lib/img_to_script/abstract_token/math_greater_than.rb', line 11 def initialize(left:, right:, **) @type = AbsTokenType::MATH_GREATER_THAN @left = left @right = right super end |
Instance Attribute Details
#left ⇒ Object (readonly)
Returns the value of attribute left.
9 10 11 |
# File 'lib/img_to_script/abstract_token/math_greater_than.rb', line 9 def left @left end |
#right ⇒ Object (readonly)
Returns the value of attribute right.
9 10 11 |
# File 'lib/img_to_script/abstract_token/math_greater_than.rb', line 9 def right @right end |