History log of /relibc/posix-regex/rust-toolchain (Results 1 – 3 of 3)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: 0.1.1
# bf7d93bb 14-Nov-2018 jD91mZM2 <me@krake.one>

Fix issue with nested repeated groups


Revision tags: 0.1.0
# 2e761fe6 05-Oct-2018 jD91mZM2 <me@krake.one>

Downgrade rust to fix no_std compilation


# e2ed6257 30-Sep-2018 jD91mZM2 <me@krake.one>

Rewrite matcher

The idea is that it'll keep a list of all possible branches, exploring
each one. Then it keeps feeding them, until either all branches end up
dead ends (counts as a failure), or one

Rewrite matcher

The idea is that it'll keep a list of all possible branches, exploring
each one. Then it keeps feeding them, until either all branches end up
dead ends (counts as a failure), or one of the branches got explored all
the way until the end (counts as a success).

Thanks to @tbodt for hinting me how to do this! It's hopefully going to
make implementing groups easier too :)

This may or may not be called NFA or DFA or something cool like that.

show more ...