Documentation
¶
Overview ¶
Package callsignature defines the target-independent parameter contract used to bind TypeRB calls across source modules, interfaces, and backends.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func HasNamedOnly ¶
Types ¶
type Parameter ¶
type Parameter struct {
Kind ParameterKind
Label string
Type types.Type
Presence Presence
}
Parameter is the public call contract for one parameter. Label is populated only for named-only parameters; positional source names are not part of the call signature.
type ParameterKind ¶
type ParameterKind string
const ( Positional ParameterKind = "positional" NamedOnly ParameterKind = "named-only" )
Click to show internal directories.
Click to hide internal directories.