July 05, 2017
https://issues.dlang.org/show_bug.cgi?id=16992

Jonathan M Davis <issues.dlang@jmdavisProg.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
            Summary|fromISOString,              |ddoc generator does not
                   |fromISOExtString, and       |insert ddoc-ed unittest
                   |fromSimpleString do not     |blocks for fromISOString,
                   |have examples               |fromISOExtString, and
                   |                            |fromSimpleString into the
                   |                            |documentation

--
July 05, 2017
https://issues.dlang.org/show_bug.cgi?id=16992

Jonathan M Davis <issues.dlang@jmdavisProg.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Keywords|trivial                     |ddoc
          Component|dlang.org                   |dmd
           Severity|enhancement                 |normal

--
February 09, 2018
https://issues.dlang.org/show_bug.cgi?id=16992

Seb <greensunny12@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |greensunny12@gmail.com

--- Comment #9 from Seb <greensunny12@gmail.com> ---
FYI: We already have a pipeline to test for public unittests.

Try

```
make -f posix.mak std/datetime/date.publictests
```

That one is based on libdparse. https://github.com/dlang/tools/blob/master/tests_extractor.d

Anyhow, the compiler must be fixed!

--
October 16, 2022
https://issues.dlang.org/show_bug.cgi?id=16992

Nick Treleaven <nick@geany.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nick@geany.org
            Summary|ddoc generator does not     |ddoc does not match
                   |insert ddoc-ed unittest     |documented unittest with
                   |blocks for fromISOString,   |static template method
                   |fromISOExtString, and       |
                   |fromSimpleString into the   |
                   |documentation               |

--
October 16, 2022
https://issues.dlang.org/show_bug.cgi?id=16992

--- Comment #10 from Nick Treleaven <nick@geany.org> ---
(In reply to RazvanN from comment #2)
> It seems that the documentation builder has a problem with static methods. After erasing the static keyword from one method, the documentation appeared as usual.

It only happens when the method is a template. Reduced test case:

struct Date
{
    ///
    static void fromISOString()()
    {}

    ///
    unittest
    {
        // hi
    }
}

--
October 16, 2022
https://issues.dlang.org/show_bug.cgi?id=16992

--- Comment #11 from Nick Treleaven <nick@geany.org> ---
Also note that `static` is missing from the template methods: https://dlang.org/phobos/std_datetime_date.html#.Date.fromISOString

If you remove the template parentheses, `static` reappears.

--
December 17, 2022
https://issues.dlang.org/show_bug.cgi?id=16992

Iain Buclaw <ibuclaw@gdcproject.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
           Priority|P1                          |P3

--
December 13
https://issues.dlang.org/show_bug.cgi?id=16992

--- Comment #12 from dlangBugzillaToGithub <robert.schadek@posteo.de> ---
THIS ISSUE HAS BEEN MOVED TO GITHUB

https://github.com/dlang/dmd/issues/19218

DO NOT COMMENT HERE ANYMORE, NOBODY WILL SEE IT, THIS ISSUE HAS BEEN MOVED TO GITHUB

--
1 2
Next ›   Last »