Method: ImgToScript::AbstractToken::MathGreaterThan#initialize
- Defined in:
- lib/img_to_script/abstract_token/math_greater_than.rb
#initialize(left:, right:) ⇒ 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 |