| 147 | } |
| 148 | |
| 149 | void DesignComponent::insertTypeDef(TypeDef* p) { |
| 150 | m_typedefs.emplace(p->getName(), p); |
| 151 | } |
| 152 | |
| 153 | Function* DesignComponent::getFunction(std::string_view name) const { |
| 154 | FunctionMap::const_iterator itr = m_functions.find(name); |