Losin6450

Results 2 issues of Losin6450

Code: ` private static boolean debug = true; private static final JavetEnginePool pool; static { pool = new JavetEnginePool(new JavetEngineConfig() .setAllowEval(true) .setAutoSendGCNotification(true) .setJSRuntimeType(JSRuntimeType.Node) ); } private final Path file; public...

due to JavetJVMInterceptor using a static Converter [(here)](https://github.com/caoccao/Javet/blob/f8662b2f62ce8409489e3152b72c65adcfe63a67/src/main/java/com/caoccao/javet/interception/jvm/JavetJVMInterceptor.java#L73) its not possible to add plugins to the converter without using reflection. Another issue with converters is with this line [here](https://github.com/caoccao/Javet/blob/main/src/main/java/com/caoccao/javet/interop/converters/JavetProxyConverter.java#L89) if...