| 212 | } |
| 213 | |
| 214 | void DesignComponent::insertLetStmt(std::string_view name, LetStmt* decl) { |
| 215 | m_letDecls.insert(std::pair(name, decl)); |
| 216 | } |
| 217 | LetStmt* DesignComponent::getLetStmt(std::string_view name) { |
| 218 | auto itr = m_letDecls.find(name); |
| 219 | if (itr == m_letDecls.end()) { |
no test coverage detected