-
Hello.
I'm trying to parse mixfix/distfix operators but I cannot find any descriptions for the modified variation you're using. I'm using Rust, not Haskell so can't just use your code unfortunately…
-
I am getting a warning of a possible infinite recursion. I'm used to traditionally writing parsers, so wrote "expr" rule like this -
expr = value
/ "(" _ e:expr _ ")" {return ["paren", e];…
-
In commit 8b189c292aa883a7e2c7049cb1d84fb4404bc90e I gave up on working on the assembler. This is something I still need to write and this issue stands to remind me of that.
-
In ASCompletion settings, by default '-' is in the list of Characters requiring whitespace.
I would like to type "x=1+2-3;" and have it automatically completed to "x = 1 + 2 - 3;", this works with def…
-
I was wondering how `sin(x)` would get parsed --- `sin` `*` `x` ?
Would be cool to "recognize" some identifiers as being function calls,
e.g. IDENTIFIER followed by (should be interpreted as function…
-
The nom 7.0 roadmap (#1323) mentions, among many things,
> handling precedence in expressions (something like [Megaparsec's `makeExprParser`](https://hackage.haskell.org/package/parsec-3.1.14.0/doc…
-
### Problem Description
The ConditionSet class currently performs 2 roles;
- evaluating expressions to int64_t values and to booleans (using the Test function)
- performing assignments to conditi…
-
**Checklist**
- [x] I made sure that there are no existing issues - open or closed - to which I could contribute my information.
- [x] I have read the FAQ and my problem isn't listed.
- [x] I …
Aga-C updated
8 months ago
-
Today I had to write `0.5333333333`. It would be much better to write `1/3 + 0.2`.
-
The percent sign seems to have a higher precedence than parenthesis, which seems... wrong...
![Screenshot_20230419-114004_Calculator](https://user-images.githubusercontent.com/53665781/233036065-97…