Class: SyntaxTree::Defined

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

Overview

Defined represents the use of the defined? operator. It can be used with and without parentheses.

defined?(variable)

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(value:, location:, comments: []) ⇒ Defined

Returns a new instance of Defined.



3600
3601
3602
3603
3604
# File 'lib/syntax_tree/node.rb', line 3600

def initialize(value:, location:, comments: [])
  @value = value
  @location = location
  @comments = comments
end

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



3598
3599
3600
# File 'lib/syntax_tree/node.rb', line 3598

def comments
  @comments
end

#valueObject (readonly)

untyped

the value being sent to the keyword



3595
3596
3597
# File 'lib/syntax_tree/node.rb', line 3595

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



3606
3607
3608
# File 'lib/syntax_tree/node.rb', line 3606

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

#child_nodesObject Also known as: deconstruct



3610
3611
3612
# File 'lib/syntax_tree/node.rb', line 3610

def child_nodes
  [value]
end

#deconstruct_keys(_keys) ⇒ Object



3616
3617
3618
# File 'lib/syntax_tree/node.rb', line 3616

def deconstruct_keys(_keys)
  { value: value, location: location, comments: comments }
end

#format(q) ⇒ Object



3620
3621
3622
3623
3624
3625
3626
3627
3628
# File 'lib/syntax_tree/node.rb', line 3620

def format(q)
  q.group(0, "defined?(", ")") do
    q.indent do
      q.breakable("")
      q.format(value)
    end
    q.breakable("")
  end
end