Franklin Chen
Franklin Chen
Also, adding a Cabal file for a full build would be nice.
I'm still confused about how to use start states in lrlex, as compared to lex/flex. What if I don't want to push or pop but just want to go to...
I'm still confused about how to return a token when states are involved, because the example above does not illustrate that situation. For example, what if I want to enter...
I finally figured out what I did wrong. There can't be spaces between the start state and the following material! ``` \* "ASTERISK" ``` did not work but ``` \*...
Unfortunately, I noticed this severe limitation several months ago when looking for a data binding tool for TypeScript. I never did find a suitable one comparable to, say, Java JAXB....
Elm 0.19 has been out now. These migrations are really tough.
I've starting using `create-elm-app` nowadays. It's useful.
I guess that `lalrpop` (which I was using before) doesn't have this problem for its parameter passing mechanics https://lalrpop.github.io/lalrpop/tutorial/009_state_parameter.html because it generates a parser struct for each exported rule, whereas...
I personally prefer to program purely functionally, but for performance I've been collecting some things during parsing mutably, which is very cheap when using a `Vec` and simply pushing to...
Any more on this?