Class: SyntaxTree::Not

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

Overview

Not represents the unary not method being called on an expression.

not value

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(statement:, parentheses:, location:, comments: []) ⇒ Not

Returns a new instance of Not.



8906
8907
8908
8909
8910
8911
# File 'lib/syntax_tree/node.rb', line 8906

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



8904
8905
8906
# File 'lib/syntax_tree/node.rb', line 8904

def comments
  @comments
end

#parenthesesObject (readonly)

boolean

whether or not parentheses were used



8901
8902
8903
# File 'lib/syntax_tree/node.rb', line 8901

def parentheses
  @parentheses
end

#statementObject (readonly)

nil | untyped

the statement on which to operate



8898
8899
8900
# File 'lib/syntax_tree/node.rb', line 8898

def statement
  @statement
end

Instance Method Details

#accept(visitor) ⇒ Object



8913
8914
8915
# File 'lib/syntax_tree/node.rb', line 8913

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

#child_nodesObject Also known as: deconstruct



8917
8918
8919
# File 'lib/syntax_tree/node.rb', line 8917

def child_nodes
  [statement]
end

#deconstruct_keys(_keys) ⇒ Object



8923
8924
8925
8926
8927
8928
8929
8930
# File 'lib/syntax_tree/node.rb', line 8923

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

#format(q) ⇒ Object



8932
8933
8934
8935
8936
8937
8938
8939
8940
8941
8942
8943
8944
8945
8946
8947
8948
8949
8950
8951
8952
8953
8954
8955
# File 'lib/syntax_tree/node.rb', line 8932

def format(q)
  parent = q.parents.take(2)[1]
  ternary =
    (parent.is_a?(If) || parent.is_a?(Unless)) &&
      Ternaryable.call(q, parent)

  q.text("not")

  if parentheses
    q.text("(")
  elsif ternary
    q.if_break { q.text(" ") }.if_flat { q.text("(") }
  else
    q.text(" ")
  end

  q.format(statement) if statement

  if parentheses
    q.text(")")
  elsif ternary
    q.if_flat { q.text(")") }
  end
end