We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 331a825 commit e15b40bCopy full SHA for e15b40b
src/syntax_macros.jl
@@ -30,10 +30,9 @@ function _apply_nospecialize(ctx, ex)
30
end
31
32
function Base.var"@nospecialize"(__context__::MacroContext, ex, exs...)
33
+ # TODO support multi-arg version properly
34
_apply_nospecialize(__context__, ex)
- Base.var"@nospecialize"(__context__, exs...)
35
36
-Base.var"@nospecialize"(__context__::MacroContext) = nothing # TODO implement this property
37
38
function Base.var"@atomic"(__context__::MacroContext, ex)
39
@chk kind(ex) == K"Identifier" || kind(ex) == K"::" (ex, "Expected identifier or declaration")
0 commit comments