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)


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

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

Instance Attribute Details

#argumentsString (readonly)

Returns the value of attribute arguments.

Returns:

  • (String)


386
387
388
# File 'sig/types.rbs', line 386

def arguments
  @arguments
end

#nameString (readonly)

Returns the value of attribute name.

Returns:

  • (String)


385
386
387
# File 'sig/types.rbs', line 385

def name
  @name
end