purescript-language-cst-parser icon indicating copy to clipboard operation
purescript-language-cst-parser copied to clipboard

PureScript CST Parser written in PureScript

Results 7 purescript-language-cst-parser issues
Sort by recently updated
recently updated
newest added

```sh ~/projects/purescript-language-cst-parser   main ±✚  npm run parse-package-set > parse-package-set > spago run --package parse-package-set Reading Spago workspace configuration... ✅ Selecting package to build: parse-package-set Downloading dependencies... Building......

```purescript module M where i :: Int i = 1 ``` `purs-tidy check src/M.purs` replies with ``` Some files have errors: /home/me/purs-test/src/M.purs: [6:1] Unexpected end of file ```

Would a PR be accepted that adds `Generic` instances to the ADTs in the `Types` module? Or are there particular reasons why they don't exists?

Recovery is somewhat terrible right now, and may actually produce worse errors in some cases because it is not attempting to recover the layout stack, it's only eating tokens. If...

line numbers and column positions are great for humans. I find that when indexing source code for automatic editing its easier to interface with the file or string using index....

There seems to be a bug in the traversal for AppSpine, which was introduced by #51. Here's a small reproduction: ```purescript module Main where import Prelude import Effect (Effect) import...