[Issue 8985] Get default parameter value as alias

2022-12-17 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8985

Iain Buclaw  changed:

   What|Removed |Added

   Priority|P3  |P4

--


[Issue 8985] Get default parameter value as alias

2018-03-22 Thread d-bugmail--- via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8985

Manu  changed:

   What|Removed |Added

   Keywords||industry

--


[Issue 8985] Get default parameter value as alias

2017-06-25 Thread via Digitalmars-d-bugs
https://issues.dlang.org/show_bug.cgi?id=8985

Vladimir Panteleev  changed:

   What|Removed |Added

   Priority|P2  |P3
 CC||dlang-bugzilla@thecybershad
   ||ow.net
Summary|__parameters tuple string   |Get default parameter value
   |strips off the scope of |as alias
   |default args|
   Severity|normal  |enhancement

--- Comment #1 from Vladimir Panteleev  ---
The problem is not with __parameters, which works as expected. __parameters is
not a tuple string, it rather seems to be a tuple of types with default values
attached to them.

If there was a way to get said default value as an alias, then it would then be
possible to pass it to fullyQualifiedName to achieve your desired goal.

--