Parsing decorators and directives for Namespaces - Bug? #3164
Closed
tjprescott
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
When I examine the type graph nodes:
SubNamespace
has one decorator and one directive.Test
only has one decorator and no directives. I would expect it to have one directive and one decorator.As it turns out, but examining the parent of
Test
, which isAzure
I then observe:SubNamespace
has one decorator and one directive.Test
only has one decorator and no directives.Azure
only has one directive and no decorators.Given that these are both written in the same way, I would expect both the directive and the decorator to be located on the node for the
Test
namespace.Is there a reason they are treated differently? This seems like a bug to me. I can track back through parents, but then (as expected) I end up getting duplicate directives.
Beta Was this translation helpful? Give feedback.
All reactions