Class: LiterLlm::FunctionCall

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFunctionCall

Returns a new instance of FunctionCall.

Parameters:

  • name: (String)
  • arguments: (String)


113
# File 'sig/types.rbs', line 113

def initialize: (name: String, arguments: String) -> void

Instance Attribute Details

#argumentsString (readonly)

Returns the value of attribute arguments.

Returns:

  • (String)


111
112
113
# File 'sig/types.rbs', line 111

def arguments
  @arguments
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


110
111
112
# File 'sig/types.rbs', line 110

def name
  @name
end