[Issue 13312] New: JSON output for function aliases have no target
via Digitalmars-d-bugs
digitalmars-d-bugs at puremagic.com
Sun Aug 17 09:42:07 PDT 2014
https://issues.dlang.org/show_bug.cgi?id=13312
Issue ID: 13312
Summary: JSON output for function aliases have no target
Product: D
Version: D2
Hardware: All
OS: All
Status: NEW
Keywords: json
Severity: normal
Priority: P1
Component: DMD
Assignee: nobody at puremagic.com
Reporter: blah38621 at gmail.com
Currently the JSON output for a function alias produces no target. Take for
instance this alias in rt/arrayshort.d:
alias core.cpuid.mmx mmx;
Which is done to bring mmx as a local symbol into the module. The JSON output
for it is as follows:
{
"name" : "mmx",
"kind" : "alias",
"line" : 36,
"char" : 26
},
Which has no indication what-so-ever of what the target of the alias was.
--
More information about the Digitalmars-d-bugs
mailing list