class SyntaxTree::CallNode
def initialize(receiver:, operator:, message:, arguments:, location:)
Experimental RBS support (using type sampling data from the type_fusion project).
type SyntaxTree__CallNode_initialize_receiver = SyntaxTree::VarRef | SyntaxTree::VCall | SyntaxTree::ConstPathRef | SyntaxTree::CallNode | nil def initialize: (receiver: SyntaxTree__CallNode_initialize_receiver, operator: SyntaxTree::Period?, message: SyntaxTree::Ident, arguments: SyntaxTree::ArgParen?, location: SyntaxTree::Location) -> void
This signature was generated using 23 samples from 1 application.
def initialize(receiver:, operator:, message:, arguments:, location:) @receiver = receiver @operator = operator @message = message @arguments = arguments @location = location @comments = [] end