File tree Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Expand file tree Collapse file tree 1 file changed +6
-9
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ by calling an `@pure` function).
19
19
"""
20
20
struct MethodResultPure end
21
21
22
-
23
22
"""
24
23
struct UnionSplitInfo
25
24
36
35
"""
37
36
struct CallMeta
38
37
39
- A simple struct that captures both the return type any any additional `info`
40
- for a given generic call.
38
+ A simple struct that captures both the return type (`rt`) and any additional information
39
+ (`info`) for a given generic call.
41
40
"""
42
41
struct CallMeta
43
42
rt:: Any
57
56
"""
58
57
struct ApplyCallInfo
59
58
60
- This info applies to any call of _apply_iterate(...) and captures both the
59
+ This info applies to any call of ` _apply_iterate(...)` and captures both the
61
60
info of the actual call being applied and the info for any implicit call
62
61
to the `iterate` function. Note that it is possible for the call itself
63
62
to be yet another `_apply_iterate`, in which case the `.call` field will
64
- be another ApplyCallInfo. This info is illegal on any statement that is
65
- not an _apply_iterate call.
63
+ be another ` ApplyCallInfo` . This info is illegal on any statement that is
64
+ not an ` _apply_iterate` call.
66
65
"""
67
66
struct ApplyCallInfo
68
67
# The info for the call itself
75
74
struct UnionSplitApplyCallInfo
76
75
77
76
Like `UnionSplitInfo`, but for `ApplyCallInfo` rather than MethodMatchInfo.
78
- This info is illegal on any statement that is not an _apply_iterate call.
77
+ This info is illegal on any statement that is not an ` _apply_iterate` call.
79
78
"""
80
79
struct UnionSplitApplyCallInfo
81
80
infos:: Vector{ApplyCallInfo}
82
81
end
83
-
84
-
You can’t perform that action at this time.
0 commit comments