FunctionCallNode

class FunctionCallNode(name: FunctionNameNode, arguments: Arguments<FunctionArgumentNode>, sourceLocation: SourceLocation, comment: String?) : SimpleStatementNode

Function call.

Constructors

FunctionCallNode
Link copied to clipboard
fun FunctionCallNode(name: FunctionNameNode, arguments: Arguments<FunctionArgumentNode>, sourceLocation: SourceLocation, comment: String? = null)

Functions

toDocument
Link copied to clipboard
override fun toDocument(): Document

Properties

arguments
Link copied to clipboard
val arguments: Arguments<FunctionArgumentNode>
comment
Link copied to clipboard
open override val comment: String? = null
name
Link copied to clipboard
val name: FunctionNameNode
sourceLocation
Link copied to clipboard
open override val sourceLocation: SourceLocation