Thread overview | ||||||
---|---|---|---|---|---|---|
|
January 12, 2013 [Issue 9305] New: Ugly Ddoc for default template lambda expressions | ||||
---|---|---|---|---|
| ||||
http://d.puremagic.com/issues/show_bug.cgi?id=9305 Summary: Ugly Ddoc for default template lambda expressions Product: D Version: D2 Platform: All OS/Version: All Status: NEW Severity: normal Priority: P2 Component: DMD AssignedTo: nobody@puremagic.com ReportedBy: peter.alexander.au@gmail.com --- Comment #0 from Peter Alexander <peter.alexander.au@gmail.com> 2013-01-12 12:41:57 PST --- The Ddoc generated for this: /** foo() */ void foo(alias p = (a => a))() {} is void foo(alias p = delegate auto(__T1 a) { return a; } )(); Notice that the internal representation of the lambda is leaked into the Ddoc (__T1). Ideally, the Ddoc would be this: void foo(alias p = (a => a))(); -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
January 14, 2013 [Issue 9305] Ugly Ddoc for default template lambda expressions | ||||
---|---|---|---|---|
| ||||
Posted in reply to Peter Alexander | http://d.puremagic.com/issues/show_bug.cgi?id=9305 Kenji Hara <k.hara.pg@gmail.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Keywords| |diagnostic, pull --- Comment #1 from Kenji Hara <k.hara.pg@gmail.com> 2013-01-13 22:29:31 PST --- https://github.com/D-Programming-Language/dmd/pull/1481 -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
January 14, 2013 [Issue 9305] Ugly Ddoc for default template lambda expressions | ||||
---|---|---|---|---|
| ||||
Posted in reply to Peter Alexander | http://d.puremagic.com/issues/show_bug.cgi?id=9305 --- Comment #2 from github-bugzilla@puremagic.com 2013-01-14 11:52:01 PST --- Commits pushed to master at https://github.com/D-Programming-Language/dmd https://github.com/D-Programming-Language/dmd/commit/2d6db80aa890f23644676dc023842b3c849082a7 fix Issue 9305 - Ugly Ddoc for default template lambda expressions https://github.com/D-Programming-Language/dmd/commit/67ffded7e2635148347cdf312b878277501121be Merge pull request #1481 from 9rnsr/fix9305 Issue 9305 - Ugly Ddoc for default template lambda expressions -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
January 14, 2013 [Issue 9305] Ugly Ddoc for default template lambda expressions | ||||
---|---|---|---|---|
| ||||
Posted in reply to Peter Alexander | http://d.puremagic.com/issues/show_bug.cgi?id=9305 Walter Bright <bugzilla@digitalmars.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |bugzilla@digitalmars.com Resolution| |FIXED -- Configure issuemail: http://d.puremagic.com/issues/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- |
Copyright © 1999-2021 by the D Language Foundation