Sciumo

Results 4 comments of Sciumo

A good example of fuzzy parsing would be able to return a list of commands and whatever text is between commands for further parsing. ```bash machine:chevrotain user$ ls CONTRIBUTING.md greenkeeper.json...

This task is accomplished using regexp scanners. IMHO a good use of Chevrotain is the construction and management of domain specific tokenizers at run time. Scanning the resulting tokens for...

A good use case of Chevrotain is to execute parse tasks in web workers, possibly with many different parsers handling parse events.

Web workers do not share state with the UI thread or other workers. All state must be serialized and transferred by a message; no shared global state. There is a...