David Rogers
David Rogers
I changed `SUPPORTED_PROTOCOL` in `constants.py` from `36` to `37` and it connects... now, is there going to be a bunch of buggy behavior?...Not the kind of thing for a production...
on node 14.16.0 I get ``` C:\Users\...snip...>deoptigate someProgram ...program output... deoptigate 💪 process completed with code 0 deoptigate 💪 Processing logfile at C:\Users\...snip...\isolate-00000186F1A6B130-5684-v8.log deoptigate 🚫: TypeError [ERR_INVALID_ARG_TYPE]: The "path" argument...
Hi, I was following along with the readme, in a gradle project using scala3, and was hit with ``` Scala 2 macro cannot be used in Dotty.``` when doing ```implicit...
We null out a ref under the assumption we will never need it again; but then need it again, upon this reset action. Thanks for the report, will investigate.
They are part of the project, but it's a compile-time only dependency, so it's not included in the final output. The resulting jar shouldn't have any references to lucee.jar or...
We have this looking like it's fixed after some local testing, on branch [handle-lucee-restart](https://github.com/softwareCobbler/luceedebug/tree/handle-lucee-restart). Let us know if you encounter any issues, or if it appears fixed on your end,...
for windows, it ought to be the path to tomcat's bin, and then a file named `setenv.bat` ``` REM this file is c:\foo\bar\whatever\tomcat\bin\setenv.bat set LDJAR=c:\Users\path\to\luceedebug.jar set CATALINA_OPTS=-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=localhost:9999 -javaagent:%LDJAR%=jdwpHost=localhost,jdwpPort=9999,cfHost=0.0.0.0,cfPort=10000,jarPath=%LDJAR% ```
Yeah a logger would be cool, probably would offer some mild perf improvements over the many `System.out.println` calls that are currently in there. The shaded jar is because we [add...
Recently the instrumentation bytecode count was reduced by one instruction per source code line, so what used to be 4 instructions per line ``` getstatic iload iload invokeinterface ``` is...
There's nothing really strongly tying this to VS Code. The important part is the Java agent that hooks into Lucee internals, but its interface to/from the outside world is via...