Class: SyntaxTree::In

Inherits:
Node
  • Object
show all
Defined in:
lib/syntax_tree/node.rb

Overview

In represents using the in keyword within the Ruby 2.7+ pattern matching syntax.

case value
in pattern
end

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #pretty_print, #to_json

Constructor Details

#initialize(pattern:, statements:, consequent:, location:, comments: []) ⇒ In

Returns a new instance of In.



5632
5633
5634
5635
5636
5637
5638
# File 'lib/syntax_tree/node.rb', line 5632

def initialize(pattern:, statements:, consequent:, location:, comments: [])
  @pattern = pattern
  @statements = statements
  @consequent = consequent
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



5630
5631
5632
# File 'lib/syntax_tree/node.rb', line 5630

def comments
  @comments
end

#consequentObject (readonly)

nil | In | Else

the next clause in the chain



5627
5628
5629
# File 'lib/syntax_tree/node.rb', line 5627

def consequent
  @consequent
end

#patternObject (readonly)

untyped

the pattern to check against



5621
5622
5623
# File 'lib/syntax_tree/node.rb', line 5621

def pattern
  @pattern
end

#statementsObject (readonly)

Statements

the expressions to execute if the pattern matched



5624
5625
5626
# File 'lib/syntax_tree/node.rb', line 5624

def statements
  @statements
end

Instance Method Details

#accept(visitor) ⇒ Object



5640
5641
5642
# File 'lib/syntax_tree/node.rb', line 5640

def accept(visitor)
  visitor.visit_in(self)
end

#child_nodesObject Also known as: deconstruct



5644
5645
5646
# File 'lib/syntax_tree/node.rb', line 5644

def child_nodes
  [pattern, statements, consequent]
end

#deconstruct_keys(_keys) ⇒ Object



5650
5651
5652
5653
5654
5655
5656
5657
5658
# File 'lib/syntax_tree/node.rb', line 5650

def deconstruct_keys(_keys)
  {
    pattern: pattern,
    statements: statements,
    consequent: consequent,
    location: location,
    comments: comments
  }
end

#format(q) ⇒ Object



5660
5661
5662
5663
5664
5665
5666
5667
5668
5669
5670
5671
5672
5673
5674
5675
5676
5677
5678
5679
# File 'lib/syntax_tree/node.rb', line 5660

def format(q)
  keyword = "in "

  q.group do
    q.text(keyword)
    q.nest(keyword.length) { q.format(pattern) }

    unless statements.empty?
      q.indent do
        q.breakable(force: true)
        q.format(statements)
      end
    end

    if consequent
      q.breakable(force: true)
      q.format(consequent)
    end
  end
end