Bug 2909 – Get the name of function and its parameters
Status
RESOLVED
Resolution
DUPLICATE
Severity
enhancement
Priority
P3
Component
phobos
Product
D
Version
D2
Platform
All
OS
All
Creation time
2009-04-29T01:41:00Z
Last change time
2015-06-09T05:14:43Z
Assigned to
nobody
Creator
georg
Comments
Comment #0 by georg — 2009-04-29T01:41:32Z
Phobos should provide an easy and documented way to get the name of the function and its parameters.
The function name and its parameters are unneeded in "straight" code, but with mixins and templates it is important. And it's essential for debugging them and their usage.
Here's some code from D.learn, as a starting point:
// Name of a function? Yes.
public template NameOfFunc(alias f)
{
version(LDC)
const char[] NameOfFunc = (&f).stringof[1 .. $];
else
const char[] NameOfFunc = (&f).stringof[2 .. $];
}
debug
{
private void _foo_(){}
static assert(NameOfFunc!(_foo_) ==
"_foo_", "Oh noes, NameOfFunc needs to be updated.");
}
// It has to be used at compile time with an alias of course, but it works.
//
// Name of params? No, not that I've found.
//
// Don't you love it?
// "Most C++ template features are discovered." So are D's.
// Thanks.
//
// I found that this:
void main ()
{
pragma(msg, typeof(&foo).stringof);
}
// gave this result:
void function(int x, int y)
// So now I just have to get the names out of there.
Comment #1 by andrej.mitrovich — 2013-01-11T19:39:54Z
*** This issue has been marked as a duplicate of issue 5140 ***