Method: SyntaxTree::FCall#initialize

Defined in:
lib/syntax_tree/node.rb

#initialize(value:, arguments:, location:, comments: []) ⇒ FCall

Returns a new instance of FCall.



4387
4388
4389
4390
4391
4392
# File 'lib/syntax_tree/node.rb', line 4387

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