reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/clang/lib/Tooling/Syntax/Tree.cpp
   48   assert(Child->Parent == nullptr);
   49   assert(Child->NextSibling == nullptr);
   50   assert(Child->role() == NodeRole::Detached);
   53   Child->Parent = this;
   54   Child->NextSibling = this->FirstChild;
   55   Child->Role = static_cast<unsigned>(Role);
   56   this->FirstChild = Child;