Static method changes handled?
brentvukmer opened this issue · 3 comments
brentvukmer commented
Thanks for making Virgil available, @ztellman!
I created a Java class in my Clojure project to try out Virgil via Leiningen. Instance method changes triggered a recompile/reload, but not (as far as I could tell) static method changes. Is this a known issue?
ztellman commented
Is the class containing the static method explicitly imported?
…On Fri, Jan 4, 2019 at 1:24 AM Brent Vukmer ***@***.***> wrote:
Thanks for making Virgil available, @ztellman
<https://github.com/ztellman>!
I created a Java class in my Clojure project to try out Virgil via
Leiningen. Instance method changes triggered a recompile/reload, but not
(as far as I could tell) static method changes. Is this a known issue?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#29>, or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAB6PwIUsrnF9IXu8FV_gSNPsMDYNuiEks5u_nUWgaJpZM4Zoybn>
.
brentvukmer commented
None of the project's Clojure code imports the class yet.
brentvukmer commented
Looks like I was wrong:
- opened a fresh REPL (in Cursive)
- referenced the class static method (and then imported when prompted)
- changed the static method
- saw the class get recompiled
Sorry to bug you!