-
I have been mulling this for a while, but the difficulties in fixing #197 made it feel more urgent.
As a (rare) user of Adga, I have been very fond of it's lexing, which seems very simple, and more…
-
Trying to build merlin on ecaml-multicore I get a syntax error because in a pattern
``` ocaml
| [x]-> ...
```
the lexer sees ]-> as a single token instead of two.
-
> I added your 8-bit ANSI into the docs, and it looks to be working well
![image](https://user-images.githubusercontent.com/705404/91014198-41a9a900-e5e9-11ea-8d3a-6d3acc45e126.png)
It doesn't s…
-
This problem has been bothering me all day. I have changed many versions of Comfyui, but they are all stuck here
File "D:\program_files\ComfyUIv0.22_3dpack\ComfyUI\custom_nodes\ComfyUI-3D-Pack\node…
-
The BCL has had Unicode capabilities quite a while ago in the form of [Runes](https://learn.microsoft.com/en-us/dotnet/api/system.text.rune?view=net-8.0). We should consider using runes for lexing to …
-
The JSX lexing kicks in after the previous token is considered a *expression prefix* (this works for JSX lexing). So for the colon `:`, JSX lexing mode kicks in
```
let x = { a: T) | number;
// …
-
The default lexer of Chevrotain takes the first match according to the order in which the terminals are defined. This is different to the default lexer of ANTLR, which takes the longest match (IIRC).
…
-
we should allow more than just strings as input.
this will allow stratifying our parsing. so we could make one parser that lexes a string, and then a second parser that parses the tokens from the lex…
-
Converting this grammar https://github.com/youtube/cobalt/blob/main/cobalt/css_parser/grammar.y I found that `lalr` has trouble parsing/lexing the identifier `errors`.
```
error_bug {
%whitespa…
-
The Fortran frontend fails to parse the following:
```fortran
subroutine a(b)
; &
integer b
end subroutine
```
```console
"./test.f90", line 2: bad char &(0x26)
"./test.f90", line 2: syntax…