Alessio Stalla
Alessio Stalla
I'd like to have that too. Writing a component library/framework on top of Angular is hard.
I agree that ANTLR should focus on one thing, parsing. Let's leave the AST to other projects, that may experiment with different approaches. Shameless plug, you may be interested in...
IntendedClass is a (probably suboptimal) way to work around some quirky Java accessibility pitfalls without resorting to reflection's setAccessible(true) which is problematic in certain environments and more so in Java...
It's OK for me! However, doesn't this require the compiler to target newer bytecode? Isn't it still targeting Java 5 bytecode? On Tue, 6 Oct 2020 at 17:53, Mark Evenson...
I mean, to use VarHandles, doesn't the classfile version have to be quite recent? On Tue, 6 Oct 2020 at 20:16, Mark Evenson wrote: > > > Sent from my...
Oh I see I thought it was another thing like InvokeDynamic which cannot be expressed in Java but I was wrong. On Wed, 7 Oct 2020 at 10:42, Mark Evenson...
Actually, I think the 64k limit is not about class file size, but method bytecode size, so it's the generated method that should be split, rather than the fasl.
I'm interested as well. I had started to write some minimal Lisp (which in my dreams could have been used to bootstrap a full CL) in Truffle but didn't go...
Another related use case may be the following: ``` @JsonTypeInfo( use = JsonTypeInfo.Id.NAME, include = JsonTypeInfo.As.PROPERTY) abstract class MyGeneralDomainObject { String id; //property } class A extends MyGeneralDomainObject { MyGeneralDomainObject...
It looks like pyecoregen doesn't yet support generic types. Can we do anything to help with this? I could work on a PR if I can get some guidance on...