#include "indexer.h" #include "log.hh" #include "platform.h" #include "serializer.h" using ccls::Intern; #include #include #include #include #include #include #include #include #include #include #include using namespace clang; using llvm::Timer; #include #include #include #include #include #include namespace { struct IndexParam { llvm::DenseSet SeenUID; std::vector seen_files; std::unordered_map file_contents; std::unordered_map file2write_time; // Only use this when strictly needed (ie, primary translation unit is // needed). Most logic should get the IndexFile instance via // |file_consumer|. // // This can be null if we're not generating an index for the primary // translation unit. IndexFile* primary_file = nullptr; ASTUnit& Unit; FileConsumer* file_consumer = nullptr; NamespaceHelper ns; IndexParam(ASTUnit& Unit, FileConsumer* file_consumer) : Unit(Unit), file_consumer(file_consumer) {} }; IndexFile *ConsumeFile(IndexParam ¶m, const FileEntry &File) { IndexFile *db = param.file_consumer->TryConsumeFile(File, ¶m.file_contents); // If this is the first time we have seen the file (ignoring if we are // generating an index for it): if (param.SeenUID.insert(File.getUID()).second) { std::string file_name = FileName(File); // Add to all files we have seen so we can generate proper dependency // graph. param.seen_files.push_back(file_name); // Set modification time. std::optional write_time = LastWriteTime(file_name); LOG_IF_S(ERROR, !write_time) << "failed to fetch write time for " << file_name; if (write_time) param.file2write_time[file_name] = *write_time; } return db; } Range FromSourceRange(const SourceManager &SM, const LangOptions &LangOpts, SourceRange R, unsigned *UID, bool token) { SourceLocation BLoc = R.getBegin(), ELoc = R.getEnd(); std::pair BInfo = SM.getDecomposedLoc(BLoc); std::pair EInfo = SM.getDecomposedLoc(ELoc); if (token) EInfo.second += Lexer::MeasureTokenLength(ELoc, SM, LangOpts); unsigned l0 = SM.getLineNumber(BInfo.first, BInfo.second) - 1, c0 = SM.getColumnNumber(BInfo.first, BInfo.second) - 1, l1 = SM.getLineNumber(EInfo.first, EInfo.second) - 1, c1 = SM.getColumnNumber(EInfo.first, EInfo.second) - 1; if (l0 > INT16_MAX) l0 = 0; if (c0 > INT16_MAX) c0 = 0; if (l1 > INT16_MAX) l1 = 0; if (c1 > INT16_MAX) c1 = 0; if (UID) { if (const FileEntry *F = SM.getFileEntryForID(BInfo.first)) *UID = F->getUID(); else *UID = 0; } return {{int16_t(l0), int16_t(c0)}, {int16_t(l1), int16_t(c1)}}; } Range FromCharRange(const SourceManager &SM, const LangOptions &LangOpts, SourceRange R) { return FromSourceRange(SM, LangOpts, R, nullptr, false); } Range FromTokenRange(const SourceManager &SM, const LangOptions &LangOpts, SourceRange R, unsigned *UID = nullptr) { return FromSourceRange(SM, LangOpts, R, UID, true); } Position ResolveSourceLocation(const SourceManager &SM, SourceLocation Loc, FileID *F = nullptr) { std::pair D = SM.getDecomposedLoc(Loc); if (F) *F = D.first; unsigned line = SM.getLineNumber(D.first, D.second) - 1; unsigned col = SM.getColumnNumber(D.first, D.second) - 1; return {int16_t(line > INT16_MAX ? 0 : line), int16_t(col > INT16_MAX ? 0 : col)}; } SymbolKind GetSymbolKind(const Decl& D) { switch (D.getKind()) { case Decl::TranslationUnit: return SymbolKind::File; case Decl::FunctionTemplate: case Decl::Function: case Decl::CXXMethod: case Decl::CXXConstructor: case Decl::CXXConversion: case Decl::CXXDestructor: return SymbolKind::Func; case Decl::Namespace: case Decl::NamespaceAlias: case Decl::ClassTemplate: case Decl::TypeAliasTemplate: case Decl::Enum: case Decl::Record: case Decl::CXXRecord: case Decl::TypeAlias: case Decl::Typedef: case Decl::UnresolvedUsingTypename: return SymbolKind::Type; case Decl::Field: case Decl::Var: case Decl::ParmVar: case Decl::ImplicitParam: case Decl::Decomposition: case Decl::EnumConstant: return SymbolKind::Var; default: return SymbolKind::Invalid; } } const Decl* GetTypeDecl(QualType T) { Decl *D = nullptr; const Type *TP; for(;;) { TP = T.getTypePtrOrNull(); if (!TP) return D; switch (TP->getTypeClass()) { case Type::Pointer: T = cast(TP)->getPointeeType(); continue; case Type::BlockPointer: T = cast(TP)->getPointeeType(); continue; case Type::LValueReference: case Type::RValueReference: T = cast(TP)->getPointeeType(); continue; case Type::ObjCObjectPointer: T = cast(TP)->getPointeeType(); continue; case Type::MemberPointer: T = cast(TP)->getPointeeType(); continue; default: break; } break; } try_again: switch (TP->getTypeClass()) { case Type::Typedef: D = cast(TP)->getDecl(); break; case Type::ObjCObject: D = cast(TP)->getInterface(); break; case Type::ObjCInterface: D = cast(TP)->getDecl(); break; case Type::Record: case Type::Enum: D = cast(TP)->getDecl(); break; case Type::TemplateSpecialization: if (const RecordType *Record = TP->getAs()) D = Record->getDecl(); else D = cast(TP) ->getTemplateName() .getAsTemplateDecl(); break; case Type::Auto: case Type::DeducedTemplateSpecialization: TP = cast(TP)->getDeducedType().getTypePtrOrNull(); if (TP) goto try_again; break; case Type::InjectedClassName: D = cast(TP)->getDecl(); break; // FIXME: Template type parameters! case Type::Elaborated: TP = cast(TP)->getNamedType().getTypePtrOrNull(); goto try_again; default: break; } return D; } const Decl* GetSpecialized(const Decl* D) { if (!D) return D; Decl *Template = nullptr; if (const CXXRecordDecl *CXXRecord = dyn_cast(D)) { if (const ClassTemplatePartialSpecializationDecl *PartialSpec = dyn_cast(CXXRecord)) Template = PartialSpec->getSpecializedTemplate(); else if (const ClassTemplateSpecializationDecl *ClassSpec = dyn_cast(CXXRecord)) { llvm::PointerUnion Result = ClassSpec->getSpecializedTemplateOrPartial(); if (Result.is()) Template = Result.get(); else Template = Result.get(); } else Template = CXXRecord->getInstantiatedFromMemberClass(); } else if (const FunctionDecl *Function = dyn_cast(D)) { Template = Function->getPrimaryTemplate(); if (!Template) Template = Function->getInstantiatedFromMemberFunction(); } else if (const VarDecl *Var = dyn_cast(D)) { if (Var->isStaticDataMember()) Template = Var->getInstantiatedFromStaticDataMember(); } else if (const RedeclarableTemplateDecl *Tmpl = dyn_cast(D)) Template = Tmpl->getInstantiatedFromMemberTemplate(); else return nullptr; return Template; } class IndexDataConsumer : public index::IndexDataConsumer { ASTContext *Ctx; IndexParam& param; llvm::DenseMap Decl2usr; Usr GetUsr(const Decl* D) { D = D->getCanonicalDecl(); auto R = Decl2usr.try_emplace(D); if (R.second) { SmallString<256> USR; index::generateUSRForDecl(D, USR); R.first->second = HashUsr({USR.data(), USR.size()}); } return R.first->second; } template void SetName(const Decl *D, std::string_view short_name, std::string_view qualified, Def &def, PrintingPolicy *Policy = nullptr) { SmallString<256> Str; llvm::raw_svector_ostream OS(Str); if (Policy) { D->print(OS, *Policy); } else { PrintingPolicy PP(Ctx->getLangOpts()); PP.AnonymousTagLocations = false; PP.TerseOutput = true; // PP.PolishForDeclaration = true; PP.ConstantsAsWritten = true; PP.SuppressTagKeyword = false; PP.FullyQualifiedName = false; D->print(OS, PP); } std::string name = OS.str(); for (std::string::size_type i = 0;;) { if ((i = name.find("(anonymous ", i)) == std::string::npos) break; i++; if (name.size() > 10 + 9 && name.compare(10, 9, "namespace")) name.replace(i, 10 + 9, "anon ns"); else name.replace(i, 10, "anon"); } auto i = name.find(short_name); if (i == std::string::npos) { // e.g. operator type-parameter-1 i = 0; def.short_name_offset = 0; } else if (short_name.size()) { name.replace(i, short_name.size(), qualified); def.short_name_offset = i + qualified.size() - short_name.size(); } else { def.short_name_offset = i; } def.short_name_size = short_name.size(); for (int paren = 0; i; i--) { // Skip parentheses in "(anon struct)::name" if (name[i - 1] == ')') paren++; else if (name[i - 1] == '(') paren--; else if (!(paren > 0 || isalnum(name[i - 1]) || name[i - 1] == '_' || name[i - 1] == ':')) break; } def.qual_name_offset = i; def.detailed_name = Intern(name); } Use GetUse(IndexFile* db, Range range, const DeclContext *DC, Role role) { if (!DC) return Use{{range, 0, SymbolKind::File, role}}; const Decl *D = cast(DC); switch (GetSymbolKind(*D)) { case SymbolKind::Func: return Use{{range, db->ToFunc(GetUsr(D)).usr, SymbolKind::Func, role}}; case SymbolKind::Type: return Use{{range, db->ToType(GetUsr(D)).usr, SymbolKind::Type, role}}; case SymbolKind::Var: return Use{{range, db->ToVar(GetUsr(D)).usr, SymbolKind::Var, role}}; default: return Use{{range, 0, SymbolKind::File, role}}; } } public: IndexDataConsumer(IndexParam& param) : param(param) {} void initialize(ASTContext &Ctx) override { this->Ctx = &Ctx; } bool handleDeclOccurence(const Decl *D, index::SymbolRoleSet Roles, ArrayRef Relations, #if LLVM_VERSION_MAJOR >= 7 SourceLocation Loc, #else FileID LocFID, unsigned LocOffset, #endif ASTNodeInfo ASTNode) override { SourceManager &SM = Ctx->getSourceManager(); const LangOptions &Lang = Ctx->getLangOpts(); #if LLVM_VERSION_MAJOR < 7 SourceLocation Loc; { const SrcMgr::SLocEntry &Entry = SM.getSLocEntry(LocFID); unsigned off = Entry.getOffset() + LocOffset; if (!Entry.isFile()) off |= 1u << 31; Loc = SourceLocation::getFromRawEncoding(off); } #endif SourceLocation Spell = SM.getSpellingLoc(Loc); Range spell = FromTokenRange(SM, Ctx->getLangOpts(), SourceRange(Spell, Spell)); const FileEntry *FE = SM.getFileEntryForID(SM.getFileID(Spell)); if (!FE) { #if LLVM_VERSION_MAJOR < 7 auto P = SM.getExpansionRange(Loc); spell = FromCharRange(SM, Ctx->getLangOpts(), SourceRange(P.first, P.second)); FE = SM.getFileEntryForID(SM.getFileID(P.first)); #else auto R = SM.getExpansionRange(Loc); spell = FromTokenRange(SM, Ctx->getLangOpts(), R.getAsRange()); FE = SM.getFileEntryForID(SM.getFileID(R.getBegin())); #endif if (!FE) return true; } IndexFile *db = ConsumeFile(param, *FE); if (!db) return true; const DeclContext *SemDC = D->getDeclContext(); const DeclContext *LexDC = D->getLexicalDeclContext(); (void)SemDC; (void)LexDC; Range extent = FromTokenRange(SM, Lang, D->getSourceRange()); Role role = static_cast(Roles); bool is_decl = Roles & uint32_t(index::SymbolRole::Declaration); bool is_def = Roles & uint32_t(index::SymbolRole::Definition); std::string short_name, qualified; if (auto* ND = dyn_cast(D)) { short_name = ND->getNameAsString(); qualified = ND->getQualifiedNameAsString(); } IndexFunc *func = nullptr; IndexType *type = nullptr; IndexVar *var = nullptr; SymbolKind kind = GetSymbolKind(*D); Usr usr = GetUsr(D); switch (kind) { case SymbolKind::Invalid: LOG_S(INFO) << "Unhandled " << int(D->getKind()); return true; case SymbolKind::File: return true; case SymbolKind::Func: func = &db->ToFunc(usr); if (!func->def.detailed_name[0]) { SetName(D, short_name, qualified, func->def); if (g_config->index.comments) func->def.comments = Intern(""); } if (is_def || (is_decl && !func->def.spell)) { if (func->def.spell) func->declarations.push_back(*func->def.spell); func->def.spell = GetUse(db, spell, LexDC, role); func->def.extent = GetUse(db, extent, LexDC, Role::None); if (auto *FD = dyn_cast(D)) { DeclarationNameInfo Info = FD->getNameInfo(); func->def.spell = GetUse( db, FromTokenRange(SM, Ctx->getLangOpts(), Info.getSourceRange()), LexDC, role); } } else func->uses.push_back(GetUse(db, spell, LexDC, role)); break; case SymbolKind::Type: type = &db->ToType(usr); if (!type->def.detailed_name[0]) { SetName(D, short_name, qualified, type->def); if (g_config->index.comments) type->def.comments = Intern(""); } if (is_def || (is_decl && !type->def.spell)) { if (type->def.spell) type->declarations.push_back(*type->def.spell); type->def.spell = GetUse(db, spell, LexDC, role); type->def.extent = GetUse(db, extent, LexDC, Role::None); } else type->uses.push_back(GetUse(db, spell, LexDC, role)); break; case SymbolKind::Var: var = &db->ToVar(usr); if (!var->def.detailed_name[0]) { SetName(D, short_name, qualified, var->def); if (g_config->index.comments) var->def.comments = Intern(""); } if (is_def || (is_decl && !var->def.spell)) { if (var->def.spell) var->declarations.push_back(*var->def.spell); var->def.spell = GetUse(db, spell, LexDC, role); var->def.extent = GetUse(db, extent, LexDC, Role::None); if (auto *VD = dyn_cast(D)) { var->def.storage = VD->getStorageClass(); QualType T = VD->getType(); for (const Decl* D1 = GetTypeDecl(T); D1; D1 = GetSpecialized(D1)) { Usr usr1 = GetUsr(D1); if (db->usr2type.count(usr1)) var->def.type = usr1; } } } else var->uses.push_back(GetUse(db, spell, LexDC, role)); break; } switch (D->getKind()) { case Decl::Namespace: type->def.kind = lsSymbolKind::Namespace; break; case Decl::NamespaceAlias: { type->def.kind = lsSymbolKind::TypeAlias; auto* NAD = cast(D); if (const NamespaceDecl* ND = NAD->getNamespace()) { Usr usr1 = GetUsr(ND); if (db->usr2type.count(usr1)) type->def.alias_of = usr1; } break; } case Decl::Enum: type->def.kind = lsSymbolKind::Enum; break; case Decl::Record: case Decl::CXXRecord: type->def.kind = lsSymbolKind::Struct; if (is_def) { auto *RD = cast(D); bool can_get_offset = RD->isCompleteDefinition() && !RD->isDependentType(); for (FieldDecl *FD : RD->fields()) type->def.vars.emplace_back( GetUsr(FD), can_get_offset ? Ctx->getFieldOffset(FD) : -1); } break; case Decl::ClassTemplate: type->def.kind = lsSymbolKind::Class; break; case Decl::FunctionTemplate: type->def.kind = lsSymbolKind::Function; break; case Decl::TypeAliasTemplate: type->def.kind = lsSymbolKind::TypeAlias; break; case Decl::TypeAlias: case Decl::Typedef: case Decl::UnresolvedUsingTypename: type->def.kind = lsSymbolKind::TypeAlias; if (auto *TD = dyn_cast(D)) { QualType T = TD->getUnderlyingType(); if (const Decl* D1 = GetTypeDecl(T)) { Usr usr1 = GetUsr(D1); if (db->usr2type.count(usr1)) type->def.alias_of = usr1; } } break; case Decl::Function: func->def.kind = lsSymbolKind::Function; break; case Decl::CXXMethod: func->def.kind = lsSymbolKind::Method; break; case Decl::CXXConstructor: case Decl::CXXConversion: func->def.kind = lsSymbolKind::Constructor; break; case Decl::CXXDestructor: func->def.kind = lsSymbolKind::Method; break; case Decl::Var: case Decl::ParmVar: var->def.kind = lsSymbolKind::Variable; if (is_def) { if (auto* FD = dyn_cast(SemDC)) db->ToFunc(GetUsr(FD)).def.vars.push_back(usr); else if (auto* ND = dyn_cast(SemDC)) db->ToType(GetUsr(ND)).def.vars.emplace_back(usr, -1); } [[fallthrough]]; case Decl::Field: case Decl::ImplicitParam: case Decl::Decomposition: break; case Decl::EnumConstant: { auto *ECD = cast(D); const auto& Val = ECD->getInitVal(); std::string init = " = " + (Val.isSigned() ? std::to_string(Val.getSExtValue()) : std::to_string(Val.getZExtValue())); var->def.detailed_name = Intern(var->def.detailed_name + init); break; } default: LOG_S(INFO) << "Unhandled " << int(D->getKind()); break; } return true; } }; } const int IndexFile::kMajorVersion = 16; const int IndexFile::kMinorVersion = 1; IndexFile::IndexFile(unsigned UID, const std::string &path, const std::string &contents) : UID(UID), path(path), file_contents(contents) {} IndexFunc& IndexFile::ToFunc(Usr usr) { auto ret = usr2func.try_emplace(usr); if (ret.second) ret.first->second.usr = usr; return ret.first->second; } IndexType& IndexFile::ToType(Usr usr) { auto ret = usr2type.try_emplace(usr); if (ret.second) ret.first->second.usr = usr; return ret.first->second; } IndexVar& IndexFile::ToVar(Usr usr) { auto ret = usr2var.try_emplace(usr); if (ret.second) ret.first->second.usr = usr; return ret.first->second; } std::string IndexFile::ToString() { return ccls::Serialize(SerializeFormat::Json, *this); } void Uniquify(std::vector& usrs) { std::unordered_set seen; size_t n = 0; for (size_t i = 0; i < usrs.size(); i++) if (seen.insert(usrs[i]).second) usrs[n++] = usrs[i]; usrs.resize(n); } void Uniquify(std::vector& uses) { std::unordered_set seen; size_t n = 0; for (size_t i = 0; i < uses.size(); i++) { if (seen.insert(uses[i].range).second) uses[n++] = uses[i]; } uses.resize(n); } void AddUse(IndexFile* db, std::vector& uses, Range range, ClangCursor parent, Role role = Role::Reference) { // switch (GetSymbolKind(parent.get_kind())) { // case SymbolKind::Func: // uses.push_back(Use{ // {range, db->ToFunc(parent.cx_cursor).usr, SymbolKind::Func, role}}); // break; // case SymbolKind::Type: // uses.push_back(Use{ // {range, db->ToType(parent.cx_cursor).usr, SymbolKind::Type, role}}); // break; // default: // uses.push_back(Use{{range, 0, SymbolKind::File, role}}); // break; // } } std::vector> ClangIndexer::Index( VFS* vfs, std::string file, const std::vector& args, const std::vector& file_contents) { if (!g_config->index.enabled) return {}; file = NormalizePath(file); std::vector Args; for (auto& arg: args) Args.push_back(arg.c_str()); Args.push_back("-Xclang"); Args.push_back("-detailed-preprocessing-record"); Args.push_back("-fno-spell-checking"); auto PCHCO = std::make_shared(); IntrusiveRefCntPtr Diags(CompilerInstance::createDiagnostics(new DiagnosticOptions)); std::shared_ptr CI = createInvocationFromCommandLine(Args, Diags); if (!CI) return {}; CI->getLangOpts()->CommentOpts.ParseAllComments = true; std::vector> BufOwner; for (auto &c : file_contents) { std::unique_ptr MB = llvm::MemoryBuffer::getMemBufferCopy(c.content, c.path); CI->getPreprocessorOpts().addRemappedFile(c.path, MB.get()); BufOwner.push_back(std::move(MB)); } auto Unit = ASTUnit::create(CI, Diags, true, true); if (!Unit) return {}; FileConsumer file_consumer(vfs, file); IndexParam param(*Unit, &file_consumer); auto DataConsumer = std::make_shared(param); index::IndexingOptions IndexOpts; memset(&IndexOpts, 1, sizeof IndexOpts); IndexOpts.SystemSymbolFilter = index::IndexingOptions::SystemSymbolFilterKind::All; IndexOpts.IndexFunctionLocals = true; std::unique_ptr IndexAction = createIndexingAction(DataConsumer, IndexOpts, nullptr); llvm::CrashRecoveryContextCleanupRegistrar IndexActionCleanup( IndexAction.get()); DiagnosticErrorTrap DiagTrap(*Diags); bool Success = ASTUnit::LoadFromCompilerInvocationAction( std::move(CI), PCHCO, Diags, IndexAction.get(), Unit.get(), /*Persistent=*/true, "/home/maskray/Dev/llvm/release/lib/clang/7.0.0", /*OnlyLocalDecls=*/true, /*CaptureDiagnostics=*/true, 0, false, false, true); if (!Unit) { LOG_S(ERROR) << "failed to index " << file; return {}; } if (!Success) return {}; // ClangCursor(clang_getTranslationUnitCursor(tu->cx_tu)) // .VisitChildren(&VisitMacroDefinitionAndExpansions, ¶m); std::unordered_map inc_to_line; // TODO if (param.primary_file) for (auto& inc : param.primary_file->includes) inc_to_line[inc.resolved_path] = inc.line; llvm::DenseMap> UID2skipped; { const SourceManager& SM = Unit->getSourceManager(); PreprocessingRecord *PPRec = Unit->getPreprocessor().getPreprocessingRecord(); if (PPRec) { const std::vector& Skipped = PPRec->getSkippedRanges(); for (auto& R : Skipped) { unsigned UID; Range range = FromTokenRange(SM, Unit->getLangOpts(), R, &UID); UID2skipped[UID].push_back(range); } } } auto result = param.file_consumer->TakeLocalState(); for (std::unique_ptr& entry : result) { entry->import_file = file; entry->args = args; auto it = UID2skipped.find(entry->UID); if (it != UID2skipped.end()) entry->skipped_ranges = std::move(it->second); for (auto& it : entry->usr2func) { // e.g. declaration + out-of-line definition Uniquify(it.second.derived); Uniquify(it.second.uses); } for (auto& it : entry->usr2type) { Uniquify(it.second.derived); Uniquify(it.second.uses); // e.g. declaration + out-of-line definition Uniquify(it.second.def.funcs); } for (auto& it : entry->usr2var) Uniquify(it.second.uses); if (param.primary_file) { // If there are errors, show at least one at the include position. auto it = inc_to_line.find(entry->path); if (it != inc_to_line.end()) { int line = it->second; for (auto ls_diagnostic : entry->diagnostics_) { if (ls_diagnostic.severity != lsDiagnosticSeverity::Error) continue; ls_diagnostic.range = lsRange{lsPosition{line, 10}, lsPosition{line, 10}}; param.primary_file->diagnostics_.push_back(ls_diagnostic); break; } } } // Update file contents and modification time. entry->last_write_time = param.file2write_time[entry->path]; // Update dependencies for the file. Do not include the file in its own // dependency set. for (const std::string& path : param.seen_files) if (path != entry->path && path != entry->import_file) entry->dependencies[path] = param.file2write_time[path]; } return result; } void IndexInit() { // InitLLVM CXIndex CXIdx = clang_createIndex(0, 0); clang_disposeIndex(CXIdx); } // |SymbolRef| is serialized this way. // |Use| also uses this though it has an extra field |file|, // which is not used by Index* so it does not need to be serialized. void Reflect(Reader& visitor, Reference& value) { if (visitor.Format() == SerializeFormat::Json) { std::string t = visitor.GetString(); char* s = const_cast(t.c_str()); value.range = Range::FromString(s); s = strchr(s, '|'); value.usr = strtoull(s + 1, &s, 10); value.kind = static_cast(strtol(s + 1, &s, 10)); value.role = static_cast(strtol(s + 1, &s, 10)); } else { Reflect(visitor, value.range); Reflect(visitor, value.usr); Reflect(visitor, value.kind); Reflect(visitor, value.role); } } void Reflect(Writer& visitor, Reference& value) { if (visitor.Format() == SerializeFormat::Json) { char buf[99]; snprintf(buf, sizeof buf, "%s|%" PRIu64 "|%d|%d", value.range.ToString().c_str(), value.usr, int(value.kind), int(value.role)); std::string s(buf); Reflect(visitor, s); } else { Reflect(visitor, value.range); Reflect(visitor, value.usr); Reflect(visitor, value.kind); Reflect(visitor, value.role); } }