Vyacheslav

Results 10 comments of Vyacheslav

That actually would be great

Similar issue: generated types are too common. For example, generated type is ``` type A = { x: number; [k: string]: unknown; } ``` Type of `x` does not matter...

Current state: Cloned both `lldb-sys` and `lldb` and managed to compile them on ubuntu 16.04 64-bit. Started a test project using `lldb` and managed to run a copy of `ls`,...

What format should first line have? Something set by user? Should this format be global (for every register) or should it be set per register? What happens with first line...

I think data format and protocol should be chosen wisely. JSON is very limited and is not well-suited for low-level tool like ProDBG. What are requirements for data format? Here...

> > Transport level. Currently ProDBG has remote debugging in plans. Should protocol be aware of this? > > I don't think the protocol needs to care about it. It...

> > Custom requests/responses. Current implementation allows any additional fields in messages. Is it needed in that "wild" form? Maybe it is better to allow plugins and backend define their...

Oh, you're right. These typings are way too incomplete. I'll update PR later this week. I actually used only "query" part for data insertion and did not bother with other...

Updated. I tried to leave as much as possible info in comments. Here's what's not described in comments. I had to write down every possible format: ``` export type Format...