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

Method insertLetStmt

src/Design/DesignComponent.cpp:214–216  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

212}
213
214void DesignComponent::insertLetStmt(std::string_view name, LetStmt* decl) {
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()) {

Callers 1

compileLetDeclarationMethod · 0.80

Calls 1

insertMethod · 0.80

Tested by

no test coverage detected