ref: 286b40b5cc3bf80fdd2d9345dd3ea6c1abb06744
parent: 08871fe6b8e6161e988e1aa52a59da792273ab4a
author: Ori Bernstein <ori@eigenstate.org>
date: Sun May 15 19:19:13 EDT 2016
Remove outdated comments.
--- a/lib/regex/interp.myr
+++ b/lib/regex/interp.myr
@@ -6,11 +6,6 @@
const exec : (re : regex#, str : byte[:] -> std.option(byte[:][:]))
const search : (re : regex#, str : byte[:] -> std.option(byte[:][:]))
const matchfree : (pat : byte[:][:] -> void)
- /*
- FIXME: implement. This should scan for a possible start char in the
- regex and use that to optimize.
- const search : (re : regex#, str : byte[:] -> std.option(byte[:][:]))
- */
;;
/* Ugly: for performance. std.option() should be used instead when unions get faster. */