You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem? Please describe.
Fury jit will generate java code based expression tree, we need a way to compile java code into bytecode.
Describe the solution you'd like
We can use janino compiler to compile java code into bytecode since it's faster than jdk compiler.
Describe alternatives you've considered javax.tools.JavaCompiler is also feasible, but too slow and generated classfile only.
Additional context
Janino compiler doesn't support generics, the generated code shouldn't contains generics.
Is your feature request related to a problem? Please describe.
Fury jit will generate java code based expression tree, we need a way to compile java code into bytecode.
Describe the solution you'd like
We can use janino compiler to compile java code into bytecode since it's faster than jdk compiler.
Describe alternatives you've considered
javax.tools.JavaCompiler
is also feasible, but too slow and generated classfile only.Additional context
Janino compiler doesn't support generics, the generated code shouldn't contains generics.
#28
The text was updated successfully, but these errors were encountered: