Method: Cel::Condition#initialize
- Defined in:
- lib/cel/ast/elements.rb
#initialize(if_, then_, else_) ⇒ Condition
Returns a new instance of Condition.
566 567 568 569 570 |
# File 'lib/cel/ast/elements.rb', line 566 def initialize(if_, then_, else_) @if = if_ @then = then_ @else = else_ end |