digitalmars.D.bugs - [Issue 12105] New: ctRegex errors
- d-bugmail puremagic.com (53/53) Feb 07 2014 https://d.puremagic.com/issues/show_bug.cgi?id=12105
- d-bugmail puremagic.com (16/16) Feb 08 2014 https://d.puremagic.com/issues/show_bug.cgi?id=12105
- d-bugmail puremagic.com (10/10) Feb 22 2014 https://d.puremagic.com/issues/show_bug.cgi?id=12105
- d-bugmail puremagic.com (14/14) Feb 23 2014 https://d.puremagic.com/issues/show_bug.cgi?id=12105
- d-bugmail puremagic.com (9/9) Feb 23 2014 https://d.puremagic.com/issues/show_bug.cgi?id=12105
https://d.puremagic.com/issues/show_bug.cgi?id=12105 Summary: ctRegex errors Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: Phobos AssignedTo: nobody puremagic.com ReportedBy: temtaime gmail.com import std.regex; auto r = ctRegex!`.+?(?<!\\)a`; void main() {} Gives: src\phobos\std\regex.d-mixin-5859(5943): Error: found 'else' instead of statement import std.regex; StaticRegex!char[1] tokenRegex = [ ctRegex!`` ]; void main() {} On windows gives strange errors to curl(it is neccessary to compile with -O -noboundscheck -release) curl.lib Warning 2: File Not Found curl.lib curl.lib Warning 2: File Not Found curl.lib DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_easy_init DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_easy_setopt DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_easy_strerror DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_slist_append DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_easy_duphandle DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_easy_perform DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_slist_free_all DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_easy_cleanup DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_global_init DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_version_info DMD\windows\bin\..\lib\phobos.lib(curl) Error 42: Symbol Undefined _curl_global_cleanup -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Feb 07 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12105 Dmitry Olshansky <dmitry.olsh gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |dmitry.olsh gmail.com AssignedTo|nobody puremagic.com |dmitry.olsh gmail.com 02:36:30 PST --- Somewhat reduced, the lookaround and lazy repetition are required: import std.regex; auto r = ctRegex!`.*?(?!)`; void main() {} The second case looks like a compiler bug, especially since it requires some combination of flags. -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Feb 08 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12105 Dmitry Olshansky <dmitry.olsh gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |pull 13:26:38 PST --- https://github.com/D-Programming-Language/phobos/pull/1959 -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Feb 22 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12105 Commits pushed to master at https://github.com/D-Programming-Language/phobos https://github.com/D-Programming-Language/phobos/commit/873a440fd44a52dd84600d572f62175b4b9b0551 std.regex - fix issue 12105 Handle the case where a lazy quantified loop will have pessimistic empty "quick test", for example in front of a lookaround. https://github.com/D-Programming-Language/phobos/commit/afd910e924eb60b0c53e8ec3c9bfc6cde4a8db2a std.regex - fix issue 12105 -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Feb 23 2014
https://d.puremagic.com/issues/show_bug.cgi?id=12105 Dmitry Olshansky <dmitry.olsh gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED -- Configure issuemail: https://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: -------
Feb 23 2014