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

#pretty_print, #to_json

Constructor Details

#initialize(value:, location:, comments: []) ⇒ Defined

Returns a new instance of Defined.



3495
3496
3497
3498
3499
# File 'lib/syntax_tree/node.rb', line 3495

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



3493
3494
3495
# File 'lib/syntax_tree/node.rb', line 3493

def comments
  @comments
end

#valueObject (readonly)

untyped

the value being sent to the keyword



3490
3491
3492
# File 'lib/syntax_tree/node.rb', line 3490

def value
  @value
end

Instance Method Details

#accept(visitor) ⇒ Object



3501
3502
3503
# File 'lib/syntax_tree/node.rb', line 3501

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

#child_nodesObject Also known as: deconstruct



3505
3506
3507
# File 'lib/syntax_tree/node.rb', line 3505

def child_nodes
  [value]
end

#deconstruct_keys(keys) ⇒ Object



3511
3512
3513
# File 'lib/syntax_tree/node.rb', line 3511

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

#format(q) ⇒ Object



3515
3516
3517
3518
3519
3520
3521
3522
3523
# File 'lib/syntax_tree/node.rb', line 3515

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