Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

removed deprecated parameter to Base.kwarg_decl #36

Merged
merged 2 commits into from
Dec 5, 2022
Merged
Changes from all commits
Commits
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
13 changes: 8 additions & 5 deletions src/method.jl
Original file line number Diff line number Diff line change
Expand Up @@ -247,14 +247,17 @@ function kwargs(m::Method)
return names
end

function kwarg_names(m::Method)
mt = Base.get_methodtable(m)
!isdefined(mt, :kwsorter) && return [] # no kwsorter means no keywords for sure.
return Base.kwarg_decl(m, typeof(mt.kwsorter))
if VERSION >= v"1.4-"
kwarg_names(m::Method) = Base.kwarg_decl(m)
else
function kwarg_names(m::Method)
mt = Base.get_methodtable(m)
!isdefined(mt, :kwsorter) && return [] # no kwsorter means no keywords for sure.
return Base.kwarg_decl(m, typeof(mt.kwsorter))
end
end



"""
_truly_rename_unionall(@nospecialize(u))

Expand Down