Class: SyntaxTree::Command

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

Overview

Command represents a method call with arguments and no parentheses. Note that Command nodes only happen when there is no explicit receiver for this method.

method argument

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(message:, arguments:, location:, comments: []) ⇒ Command

Returns a new instance of Command.



2939
2940
2941
2942
2943
2944
# File 'lib/syntax_tree/node.rb', line 2939

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

Instance Attribute Details

#argumentsObject (readonly)

Args

the arguments being sent with the message



2934
2935
2936
# File 'lib/syntax_tree/node.rb', line 2934

def arguments
  @arguments
end

#commentsObject (readonly)

Array[ Comment | EmbDoc ]

the comments attached to this node



2937
2938
2939
# File 'lib/syntax_tree/node.rb', line 2937

def comments
  @comments
end

#messageObject (readonly)

Const | Ident

the message being sent to the implicit receiver



2931
2932
2933
# File 'lib/syntax_tree/node.rb', line 2931

def message
  @message
end

Instance Method Details

#accept(visitor) ⇒ Object



2946
2947
2948
# File 'lib/syntax_tree/node.rb', line 2946

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

#child_nodesObject Also known as: deconstruct



2950
2951
2952
# File 'lib/syntax_tree/node.rb', line 2950

def child_nodes
  [message, arguments]
end

#deconstruct_keys(_keys) ⇒ Object



2956
2957
2958
2959
2960
2961
2962
2963
# File 'lib/syntax_tree/node.rb', line 2956

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

#format(q) ⇒ Object



2965
2966
2967
2968
2969
2970
# File 'lib/syntax_tree/node.rb', line 2965

def format(q)
  q.group do
    q.format(message)
    align(q, self) { q.format(arguments) }
  end
end