CodeAtlasVsix icon indicating copy to clipboard operation
CodeAtlasVsix copied to clipboard

Conditional direction symbols

Open solwhitecobalt opened this issue 5 years ago • 1 comments

Hi, I'm a Asp.net/C# developer. I believe it doesn't have conditional direction symbols yet for caller-callees relationships? I would love to have that feature here. Great extension by the way!

For instance, we have this condition in Features() method:

if(youAgree)
{
          StaticFunctions.DoIt();
}
else
{
         StaticFunctions.IgnoreAndPlayML();
}

Something similar to this would be great:

             ┌ DoIt()
Features()   ┤
             └ IgnoreAndPlayML()

Thanks!

solwhitecobalt avatar Sep 18 '20 07:09 solwhitecobalt

@solwhitecobalt Unfortunately that would be hard because it requires doxygen has a thorough analysis on the code. Currently CodeGraph relies on the results from doxygen and doxygen actually remains untouched.

My advice is to add some comments using the "Symbol" tab, or group either branch into a separate bookmark. It may not be enough but it's better than none.

league1991 avatar Nov 16 '20 09:11 league1991