Results 508 comments of hhugo

@EmileRolley, can you explain the semantic of such construct ?

Can you write what you want with `Compl '$' | ( '$', Compl '(')` ?

You should be able to get it work by setting `Location.input_buf := None`. Reading from an existing lexbuf seems to be an optimization only.

Should likely be closed.

@toots, what do you think of closing this one ?

we're now using ppxlib, should be closed

splitting `yojson` into different compilation units (while keeping the same API) would allow the ocaml linker to omit some units if not used (thanks to module alias). It's unlikely that...

After splitting, here is the size (in bytes) of individual units. A quick look at `Basic` `Raw` and `Safe` reveal that the lexer is responsible for half of the size...

A deeper look at read.mll, there are 3 lexers/parsers in there (normal, skip and buffer variants) which are duplicated 3 times (for Basic, Safe and Raw modules). It might be...