Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
1fae8e7
Support "Functor-like" `code_typed` invocation
topolarity Mar 27, 2025
395feea
Base: Support functors in `method_instance(s)`, `code_ircode`, and `c…
topolarity Jul 3, 2025
16c6e5e
InteractiveUtils: Support functors in `code_llvm`, `code_native`, and…
topolarity Jul 3, 2025
33e4b05
Support "Functor-like" `code_typed` invocation
topolarity Mar 27, 2025
3ffce1e
Base: Support functors in `method_instance(s)`, `code_ircode`, and `c…
topolarity Jul 3, 2025
ec2f4c8
InteractiveUtils: Support functors in `code_llvm`, `code_native`, and…
topolarity Jul 3, 2025
ef7727e
Add support for directly providing signature tuple
serenity4 Jul 4, 2025
394f15d
Merge branch 'master' of github.com:JuliaLang/julia into interactive-…
serenity4 Jul 4, 2025
76f030c
Merge branch 'ct/functor-reflection' of github.com:topolarity/julia i…
serenity4 Jul 4, 2025
84dd768
Merge branch 'master' into interactive-utils-functors
serenity4 Jul 7, 2025
865739e
Merge branch 'master' of github.com:JuliaLang/julia into interactive-…
serenity4 Jul 7, 2025
5f5db13
Improve error message
serenity4 Aug 6, 2025
57fbef2
Merge branch 'interactive-utils-functors' of github.com:serenity4/jul…
serenity4 Aug 6, 2025
551e0ea
Fix implementation for OpaqueClosure
serenity4 Aug 18, 2025
12dacbe
Add additional test
serenity4 Aug 18, 2025
8dea09e
Document `gen_call_with_extracted_types`
serenity4 Aug 19, 2025
c9ec156
Enable support for callable objects for source reflection macros
serenity4 Aug 19, 2025
73a9256
Add `kws...` in docs for `fcn` usage
serenity4 Aug 19, 2025
e7b88ee
Merge branch 'master' into interactive-utils-functors
serenity4 Aug 21, 2025
c8b7dc7
Properly handle (re)escaping and replace_ref_begin_end! interactions
serenity4 Aug 25, 2025
ae98622
Merge branch 'master' of github.com:JuliaLang/julia into interactive-…
serenity4 Aug 25, 2025
8a60b9f
Fix doctest failure
serenity4 Aug 25, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions doc/src/base/reflection.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@ the unquoted and interpolated expression ([`Expr`](@ref)) form for a given macro
`quote` the expression block itself (otherwise, the macro will be evaluated and the result will
be passed instead!). For example:

```jldoctest; setup = :(using InteractiveUtils)
julia> InteractiveUtils.macroexpand(@__MODULE__, :(@edit println("")) )
:(InteractiveUtils.edit(println, InteractiveUtils.Tuple{(InteractiveUtils.Core).Typeof("")}))
```jldoctest
julia> macroexpand(@__MODULE__, :(@invoke identity(1::Int)))
:(Core.invoke(identity, Base.Tuple{Int}, 1))
```

The functions `Base.Meta.show_sexpr` and [`dump`](@ref) are used to display S-expr style views
Expand Down
Loading