Class: SyntaxTree::Command
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
-
#arguments ⇒ Object
readonly
- Args
-
the arguments being sent with the message.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#message ⇒ Object
readonly
- Const | Ident
-
the message being sent to the implicit receiver.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(message:, arguments:, location:, comments: []) ⇒ Command
constructor
A new instance of Command.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(message:, arguments:, location:, comments: []) ⇒ Command
Returns a new instance of Command.
2938 2939 2940 2941 2942 2943 |
# File 'lib/syntax_tree/node.rb', line 2938 def initialize(message:, arguments:, location:, comments: []) @message = @arguments = arguments @location = location @comments = comments end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
- Args
-
the arguments being sent with the message
2933 2934 2935 |
# File 'lib/syntax_tree/node.rb', line 2933 def arguments @arguments end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
2936 2937 2938 |
# File 'lib/syntax_tree/node.rb', line 2936 def comments @comments end |
#message ⇒ Object (readonly)
- Const | Ident
-
the message being sent to the implicit receiver
2930 2931 2932 |
# File 'lib/syntax_tree/node.rb', line 2930 def @message end |
Instance Method Details
#accept(visitor) ⇒ Object
2945 2946 2947 |
# File 'lib/syntax_tree/node.rb', line 2945 def accept(visitor) visitor.visit_command(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
2949 2950 2951 |
# File 'lib/syntax_tree/node.rb', line 2949 def child_nodes [, arguments] end |
#deconstruct_keys(_keys) ⇒ Object
2955 2956 2957 2958 2959 2960 2961 2962 |
# File 'lib/syntax_tree/node.rb', line 2955 def deconstruct_keys(_keys) { message: , arguments: arguments, location: location, comments: comments } end |
#format(q) ⇒ Object
2964 2965 2966 2967 2968 2969 |
# File 'lib/syntax_tree/node.rb', line 2964 def format(q) q.group do q.format() align(q, self) { q.format(arguments) } end end |