ParameterNode

class ParameterNode(val name: VariableNode, val type: ArrayTypeNode, val protocol: ProtocolNode, val sourceLocation: SourceLocation) : Node, VariableDeclarationNode

A parameter to a function declaration.

Constructors

Link copied to clipboard
fun ParameterNode(name: VariableNode, type: ArrayTypeNode, protocol: ProtocolNode, sourceLocation: SourceLocation)

Functions

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

Properties

Link copied to clipboard
open override val name: VariableNode

The variable declared by this node.

Link copied to clipboard
Link copied to clipboard
open override val sourceLocation: SourceLocation
Link copied to clipboard