Open mattBrzezinski opened 4 years ago
If you have an overloaded function such as:
Base.isapprox(ad::Wirtinger) # some code here end
Converting this to a compact function results in:
isapprox(ad::Wirtinger) = # some code here
Converting this back to an ordinary function results in:
Base.function isapprox(ad::Wirtinger) # some code here end
However, converting from the block above results in the proper compact version of:
Base.isapprox(ad::Wirtinger) = # some code here
Properly this should just go back and forth between:
function Base.isapprox(ad::Wirtinger) # some code here end Base.isapprox(ad::Wirtinger) = # some code here
This is why I was telling you about changing the element passed to JuliaReplaceWithTextIntention
element
JuliaReplaceWithTextIntention
If you have an overloaded function such as:
Converting this to a compact function results in:
Converting this back to an ordinary function results in:
However, converting from the block above results in the proper compact version of:
Properly this should just go back and forth between: