| 332 | ExpGlobals.insert_or_assign(std::string(Name), GlobInsts[Idx]); |
| 333 | } |
| 334 | void exportTag(std::string_view Name, uint32_t Idx) { |
| 335 | std::unique_lock Lock(Mutex); |
| 336 | ExpTags.insert_or_assign(std::string(Name), TagInsts[Idx]); |
| 337 | } |
| 338 | |
| 339 | /// Get defined type list. |
| 340 | Span<const AST::SubType *const> getTypeList() const noexcept { return Types; } |