Kajetan Patryk Zarzycki

Results 4 issues of Kajetan Patryk Zarzycki

I'm new to antlr so I may be just stupid, but here's the thing. Writing something like this `` ( TOKEN1 | TOKEN2 | TOKEN3 )+? `` crashes the extension,...

bug

Hi, I discovered an issue about match case statement. If I use match case and match against single variable, then variable's type is inferred correctly in instructions contained within case....

bug

I'm want to add Callbacks to my RobutConnection ``` TypeError: my_class.lost_connection_amqp_callback() takes 2 positional arguments but 3 were given ``` that's the method signature ``` async def lost_connection_amqp_callback(self, sender): ```...

**Description** when using `WorkspaceClient().workspace.list()` all files size parameter is always `None` **Reproduction** ```python ws_client = WorkspaceClient() files = ws_client.workspace.list() for file in files: if file.object_type == ObjectType.FILE: print(file.size) ``` **Expected...