I think I understood the semantic difference between export
and public
.
However, besides this semantic difference I thought that I can always exchange them syntactically. However, this does not seem to be the case.
In the following, only @mypublic
fails with ERROR: syntax: malformed "public" statement
, while @myexport
does not result in an error (tested both on 1.11.4 and nightly).
macro mypublic()
Expr(:public, :a)
end
@mypublic
macro mypublic_esc()
Expr(:public, :a) |> esc
end
@mypublic_esc
macro myexport()
Expr(:export, :a)
end
@myexport
macro myexport_esc()
Expr(:export, :a) |> esc
end
@myexport_esc
Why is this the case? Where is this difference documented?