Skip to content

Commit

Permalink
export [@]invokelatest (#45831)
Browse files Browse the repository at this point in the history
  • Loading branch information
aviatesk authored Jul 23, 2022
1 parent c32c0d2 commit f1991ed
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ Language changes
* The `@invoke` macro introduced in 1.7 is now exported. Additionally, it now uses `Core.Typeof(x)`
rather than `Any` when a type annotation is omitted for an argument `x` so that types passed
as arguments are handled correctly. ([#45807])
* The `invokelatest` function and `@invokelatest` macro introduced in 1.7 are now exported. ([#45831])

Compiler/Runtime improvements
-----------------------------
Expand Down
7 changes: 4 additions & 3 deletions base/exports.jl
Original file line number Diff line number Diff line change
Expand Up @@ -660,7 +660,6 @@ export

# iteration
iterate,

enumerate, # re-exported from Iterators
zip,
only,
Expand Down Expand Up @@ -794,6 +793,9 @@ export
names,
which,
@isdefined,
@invoke,
invokelatest,
@invokelatest,

# loading source files
__precompile__,
Expand Down Expand Up @@ -1048,5 +1050,4 @@ export
@goto,
@view,
@views,
@static,
@invoke
@static

2 comments on commit f1991ed

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your package evaluation job has completed - possible new issues were detected. A full report can be found here.

Please sign in to comment.