Class: SyntaxTree::Undef

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

Overview

Undef represents the use of the undef keyword.

undef method

Defined Under Namespace

Classes: UndefArgumentFormatter

Instance Attribute Summary collapse

Attributes inherited from Node

#location

Instance Method Summary collapse

Methods inherited from Node

#construct_keys, #end_char, #pretty_print, #start_char, #to_json, #to_mermaid

Constructor Details

#initialize(symbols:, location:) ⇒ Undef

Returns a new instance of Undef.



11255
11256
11257
11258
11259
# File 'lib/syntax_tree/node.rb', line 11255

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

Instance Attribute Details

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



11253
11254
11255
# File 'lib/syntax_tree/node.rb', line 11253

def comments
  @comments
end

#symbolsObject (readonly)

Array[ DynaSymbol | SymbolLiteral ]

the symbols to undefine



11250
11251
11252
# File 'lib/syntax_tree/node.rb', line 11250

def symbols
  @symbols
end

Instance Method Details

#===(other) ⇒ Object



11298
11299
11300
# File 'lib/syntax_tree/node.rb', line 11298

def ===(other)
  other.is_a?(Undef) && ArrayMatch.call(symbols, other.symbols)
end

#accept(visitor) ⇒ Object



11261
11262
11263
# File 'lib/syntax_tree/node.rb', line 11261

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

#child_nodesObject Also known as: deconstruct



11265
11266
11267
# File 'lib/syntax_tree/node.rb', line 11265

def child_nodes
  symbols
end

#copy(symbols: nil, location: nil) ⇒ Object



11269
11270
11271
11272
11273
11274
11275
11276
11277
11278
# File 'lib/syntax_tree/node.rb', line 11269

def copy(symbols: nil, location: nil)
  node =
    Undef.new(
      symbols: symbols || self.symbols,
      location: location || self.location
    )

  node.comments.concat(comments.map(&:copy))
  node
end

#deconstruct_keys(_keys) ⇒ Object



11282
11283
11284
# File 'lib/syntax_tree/node.rb', line 11282

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

#format(q) ⇒ Object



11286
11287
11288
11289
11290
11291
11292
11293
11294
11295
11296
# File 'lib/syntax_tree/node.rb', line 11286

def format(q)
  keyword = "undef "
  formatters = symbols.map { |symbol| UndefArgumentFormatter.new(symbol) }

  q.group do
    q.text(keyword)
    q.nest(keyword.length) do
      q.seplist(formatters) { |formatter| q.format(formatter) }
    end
  end
end