Eugene

Results 9 comments of Eugene

Have the same problem on `CodeLLDB 1.10.0`, compiling C++20 program with `clang 17.0.6` - adapter crashes on debug launch. The error is the same as above: ``` error: program.exe ::...

Ok, thanks for the info, will be looking forward to it! Here are some bytes (some are different from the above provided examples, can't find them again sorry, but the...

This looks pretty nice, conditions look correct, the only things are: bdnz has cr0 mentioned, but doesn't touch cr registers, and there aren't implicit operands, that said info in branch...

@HighCommander4 Thanks for the references! Post-processing seems like an ok compromise to manage the state yourself. A more automated solution I suppose would be to extend `compile_commands.json` format with config...

I've tried some simpler expression grammars and even this doesn't work for me: ```python import pyparsing as pp LBRACE, RBRACE = map(pp.Suppress, "()") NUMBER = pp.Word(pp.nums, pp.nums + ".") MATH_TEXT...

@ptmcg Right, thanks for pointing out! Basic nesting does work alright then.

@ptmcg Hello! Sorry for the long delay, was working on other tasks. By the way, thanks for your work and attention to the project, pyparsing rocks, prototyping speed is very...