ragel icon indicating copy to clipboard operation
ragel copied to clipboard

Ragel State Machine Compiler

Results 47 ragel issues
Sort by recently updated
recently updated
newest added

so the file extension shows the embedded language each compile step removes one extension ``` ragel atoi.c.rl -o atoi.c gcc atoi.c -o atoi ``` ``` atoi.c.rl atoi.c atoi ``` or...

When using `ragel-rust -V` the graphviz output ends up in the intermediate file and the intermediate file parsing throws an error.

Hi, When I generate C++ sources via command line : ``` ragel ServerBinaryControlParser.rl -o ServerBinaryControlParser.cc ``` it segfaults. When I see the generated graph (`ragel ServerBinaryControlParser.rl -p -V > /tmp/my.gv`)...

I've been wanting to tackle perl support in ragel for years now, and I think I'm ready to get serious about it. If there is any documentation related to implementing...

I am packaging Puma web server [[1]] for s390x on Fedora and I use Ragel 7.0.0.12 to regenerate its http parser [[2]]. However, when running test suite, it frequently (almost...

The documentation states > Checking if the machine has accepted its input can then be done by checking if the current state is greater-than or equal to the first final...

I've added support for PHP to ragel 6.10. It's basically a modified copy of the C# implementation. I've also added a docker-compose so windows users can develop/run ragel. I branched...

with 6.10, `[-0-9]` or `[0-9-]` cause a parse error, however with latest git the following expression causes ragel to go into infinite loop: ``` main := [ \t] +( (...

Right now the only way to get an action to execute before a condition is to use from-state actions. Would be better if we can sequence these using ordering in...

From Pablo Bleyer: > Is it currently possible to parametrize repetition numbers with > declarations or imported definitions? For example, "bytes{min,max}" > where 'min' and 'max' are defined in an...