MCPcopy Create free account
hub / github.com/chipsalliance/Surelog / getLetStmt

Method getLetStmt

src/Design/DesignComponent.cpp:217–224  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

215 m_letDecls.insert(std::pair(name, decl));
216}
217LetStmt* DesignComponent::getLetStmt(std::string_view name) {
218 auto itr = m_letDecls.find(name);
219 if (itr == m_letDecls.end()) {
220 return nullptr;
221 } else {
222 return (*itr).second;
223 }
224}
225
226} // namespace SURELOG

Callers 1

compileTfCallMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected