-
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…
-
This blocks (at least) issues #6, #8, #9, #14, #16, #17, #39, #50, #52, #55.
-
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…
-
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…
-
Hi,
It seems your lexing loses the last parameter of an assoc.
It seems to be fixable by this in glical_kernel in the Lexing module (I am too lazy to make a pull request for such a small fix):
```
…
-
Pull request coming to add support for incremental lexing.
It requires small changes to the existing runtime (but breaks no API's)
I've pasted the doc on how it works below as a starting poi…
-
We are re-lexing (a certain percentage of) the document for every hover or go to definition (instead of caching/resuing the results). For hover, it's a regression from adding document comments. Hover …
-
Currently, we completely parse the current source file three times on almost every keypress.
- Once, for the autoedit strategy,
- then again for the syntax highlighter, and
- finally, to typecheck the…
-
Currently the REPL is very basic.
It uses basic pattern matching features on larger variable contents.
It's about to time to implement a lexer and parser to more accurately scan the line being enter…
-
I'm trying to upgrade from v2 to v3 due to an issue with being unable to escape a string value that was interpreted as a variable. However I now find myself in the exact opposite situation of having t…