Ivan Kochurkin

Results 134 issues of Ivan Kochurkin

https://github.com/AvaloniaUI/Avalonia

### Grammar ```g4 lexer grammar Test; TOKEN_WITH_ACTION: {predicate()}? 'x' {action()}; ``` ### ATN ![image](https://user-images.githubusercontent.com/1150330/166311195-ea01d68e-8f1a-49c9-89cf-1042ad5765f0.png) ### Expected ATN Transitions `7->8`, `9->10` should be marked as sempred and action. Currently they are...

enhancement

It would be great to test a code completion online.

feature-request

I have next source code (C#): ``` C# namespace Module1 { internal class InternalClass1 { } } ``` And generated release code (JavaScript): ``` JavaScript define("Module1", ["ss"], function (n) {...

It's is used `-` for now for items. Is it possible to use `*` for example?

Sometimes parsing works too much time especially for very big files with ambiguous grammars. But we can stop parsing in .NET by several ways: 1. Use threads with timeouts and...

There are [many useful improvements and fixes](https://github.com/antlr/antlr4/releases/tag/4.7.2), including the following ones: * Full Unicode support * Additional lexer checks

enhancement

I mean `--superClass` option in the tool for generating [JavaScript](https://github.com/antlr/grammars-v4/tree/master/javascript) and similar parsers. Maybe also consider `--contextSuperClass` option.