Open vemv opened 1 year ago
For e.g. (.| (Thread/currentThread)), we could observe that (Thread/currentThread) returns a Thread, and therefore the completions can be constrained to those of the members of Thread.
(.| (Thread/currentThread))
(Thread/currentThread)
Thread
I don't have a preliminary idea as for how to implement this.
(Orchard has plenty of Java analysis utils)
Static fields, e.g. System/out have a similar use case and seem easier to implement - would be useful as a taster.
System/out
For e.g.
(.| (Thread/currentThread))
, we could observe that(Thread/currentThread)
returns aThread
, and therefore the completions can be constrained to those of the members of Thread.I don't have a preliminary idea as for how to implement this.
(Orchard has plenty of Java analysis utils)