File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -56,7 +56,7 @@ function children end
56
56
export children
57
57
58
58
"""
59
- operation(x)
59
+ operation(x)
60
60
61
61
Returns the function a function call expression is calling.
62
62
`iscall(x)` must be true as a precondition.
@@ -65,7 +65,7 @@ function operation end
65
65
export operation
66
66
67
67
"""
68
- arguments(x)
68
+ arguments(x)
69
69
70
70
Returns the arguments to the function call in a function call expression.
71
71
`iscall(x)` must be true as a precondition.
@@ -74,7 +74,7 @@ function arguments end
74
74
export arguments
75
75
76
76
"""
77
- unsorted_arguments(x::T)
77
+ unsorted_arguments(x::T)
78
78
79
79
If x is a expression satisfying `iscall(x)` and your expression type `T` provides
80
80
and optimized implementation for storing the arguments, this function can
@@ -86,7 +86,7 @@ export unsorted_arguments
86
86
87
87
88
88
"""
89
- arity(x)
89
+ arity(x)
90
90
91
91
When `x` satisfies `iscall`, returns the number of arguments of `x`.
92
92
Implicitly defined if `arguments(x)` is defined.
@@ -96,7 +96,7 @@ export arity
96
96
97
97
98
98
"""
99
- metadata(x)
99
+ metadata(x)
100
100
101
101
Returns the metadata attached to `x`.
102
102
"""
@@ -105,7 +105,7 @@ export metadata
105
105
106
106
107
107
"""
108
- metadata(expr, md)
108
+ metadata(expr, md)
109
109
110
110
Returns a `expr` with metadata `md` attached to it.
111
111
"""
You can’t perform that action at this time.
0 commit comments