Erez Shinan

Results 356 comments of Erez Shinan

Also got stuck here. Doesn't seem like such a difficult issue to patch.

It's probably a waste of time. This repo has not added a new entry in years.

In my experience, you have to create the widget instance within the context of the app. There's some global magic going on, and if you try to create it elsewhere,...

Hi, any idea if there's any progress on this? jedi (in vscode) has pretty good support for it (dataclass autocomplete). Perhaps you can look at their solution for inspiration?

> Probably updating grammar from Earley to LALR would increase performance Yes, definitely. Actually, it's possible that LALR in Python would be faster than Earley in C. Looking at your...

The usual recommendation in Python regarding keywords like "from" is to write it as "from_". I think it's a reasonable solution to these collisions. I'm not saying no, but your...

Yeah, it's a little tricky. But it's easier than it might seem. We handle reading the transformer in this method: https://github.com/lark-parser/lark/blob/master/lark/parse_tree_builder.py#L352 We can sweep its members at the beginning, and...

Yeah, open a PR. Btw I expect to have a bit more free time soon, to spend on merging existing PRs.

Thank your for this bug report! I will reply in three parts: An excuse, an explanation, and a solution. So, first of all, the excuse :) The SPPF implementation of...