I actually found that you can extend macros by importing them.
import MyPackage: @mymacro
you then can extend the method table of the macro by defining simply
macro mymacro(#= ... =#)
# ...
end
I actually found that you can extend macros by importing them.
import MyPackage: @mymacro
you then can extend the method table of the macro by defining simply
macro mymacro(#= ... =#)
# ...
end