synt.expr.call
¤
Call
¤
Bases: Expression
Calling a value.
References
Call.
Source code in synt/expr/call.py
args
instance-attribute
¤
|
Positional arguments of the call.
__init__
¤
|
Initialize a new Call
.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
target |
IntoExpression
|
Call target. |
required |
args |
list[IntoExpression]
|
Positional arguments of the call. |
required |
keywords |
list[Keyword]
|
Keyword arguments of the call. |
required |
Source code in synt/expr/call.py
into_code
¤
Source code in synt/expr/call.py
Keyword
¤
Bases: IntoCode
Keyword arguments of a object call.
References
Source code in synt/expr/call.py
__init__
¤
|
Initialize a new keyword argument.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
key |
Identifier
|
Keyword. |
required |
value |
IntoExpression
|
Value for the argument. |
required |