Class: SyntaxTree::FCall
Overview
FCall represents the piece of a method call that comes before any arguments (i.e., just the name of the method). It is used in places where the parser is sure that it is a method call and not potentially a local variable.
method(argument)
In the above example, it’s referring to the method segment.
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
- nil | ArgParen | Args
-
the arguments to the method call.
-
#comments ⇒ Object
readonly
- Array[ Comment | EmbDoc ]
-
the comments attached to this node.
-
#value ⇒ Object
readonly
- Const | Ident
-
the name of the method.
Attributes inherited from Node
Instance Method Summary collapse
- #accept(visitor) ⇒ Object
- #child_nodes ⇒ Object (also: #deconstruct)
- #deconstruct_keys(_keys) ⇒ Object
- #format(q) ⇒ Object
-
#initialize(value:, arguments:, location:, comments: []) ⇒ FCall
constructor
A new instance of FCall.
Methods inherited from Node
#construct_keys, #pretty_print, #to_json
Constructor Details
#initialize(value:, arguments:, location:, comments: []) ⇒ FCall
Returns a new instance of FCall.
4535 4536 4537 4538 4539 4540 |
# File 'lib/syntax_tree/node.rb', line 4535 def initialize(value:, arguments:, location:, comments: []) @value = value @arguments = arguments @location = location @comments = comments end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
- nil | ArgParen | Args
-
the arguments to the method call
4530 4531 4532 |
# File 'lib/syntax_tree/node.rb', line 4530 def arguments @arguments end |
#comments ⇒ Object (readonly)
- Array[ Comment | EmbDoc ]
-
the comments attached to this node
4533 4534 4535 |
# File 'lib/syntax_tree/node.rb', line 4533 def comments @comments end |
#value ⇒ Object (readonly)
- Const | Ident
-
the name of the method
4527 4528 4529 |
# File 'lib/syntax_tree/node.rb', line 4527 def value @value end |
Instance Method Details
#accept(visitor) ⇒ Object
4542 4543 4544 |
# File 'lib/syntax_tree/node.rb', line 4542 def accept(visitor) visitor.visit_fcall(self) end |
#child_nodes ⇒ Object Also known as: deconstruct
4546 4547 4548 |
# File 'lib/syntax_tree/node.rb', line 4546 def child_nodes [value, arguments] end |
#deconstruct_keys(_keys) ⇒ Object
4552 4553 4554 4555 4556 4557 4558 4559 |
# File 'lib/syntax_tree/node.rb', line 4552 def deconstruct_keys(_keys) { value: value, arguments: arguments, location: location, comments: comments } end |
#format(q) ⇒ Object
4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 |
# File 'lib/syntax_tree/node.rb', line 4561 def format(q) q.format(value) if arguments.is_a?(ArgParen) && arguments.arguments.nil? && !value.is_a?(Const) # If you're using an explicit set of parentheses on something that looks # like a constant, then we need to match that in order to maintain valid # Ruby. For example, you could do something like Foo(), on which we # would need to keep the parentheses to make it look like a method call. else q.format(arguments) end end |