SasakiSaki

Results 62 comments of SasakiSaki

There is another problem. In regular language, prefix `+` and infix `+` can be distinguished by this expression: ```scala Expr : Term (Infix Term)* Term : Prefix* Factor Suffix* ```...

This problem also exists with the prefix `!`(not) and the suffix `!`(factorial). eg: `x^5!y` -> `x^(5!)*y` ![image](https://github.com/segeljakt/pratt/assets/17541209/43ba6f9c-e19c-40e4-bb23-efde2e5bfdf7) In the lexer stage, I have no way of knowing whether the previous...

When I used in async function, it fails by: ```yaml error: future cannot be sent between threads safely help: the trait `std::marker::Send` is not implemented for `dyn std::error::Error` ``` enum...

Regarding the balance between accuracy and speed, many languages have a mode called `fast-math`, which guarantees accuracy by default and speed in fast mode. The following options are available: ##...

What should I do if I want to pass the `ref array` in the gc proposal? Do I have to write a loop to copy to linear memory first? Is...

There seems to be no tool that can debug at the wat level. If you switch to wasm, all redundant information will be erased and the source location will also...

Sorry, I can't attend this meeting, I am not an English speaker, I use Google and chatgpt to translate the conversation, but I will pay attention to the meeting minutes.

I have the same error, all my highlights are invalid

It should be that an exception was thrown that interrupted lexer's lexical highlighting. After the update, antlr highlighting returned to normal.

There doesn't seem to be a reorder function.