Support s_eventually (#7291) (#7508)

This commit is contained in:
Bartłomiej Chmiel
2026-05-04 09:57:03 -04:00
committed by GitHub
parent bc1acc8aa3
commit 4e349971d3
44 changed files with 717 additions and 261 deletions
+9
View File
@@ -80,6 +80,15 @@ void V3ParseImp::importIfInStd(FileLine* fileline, const string& id, bool doImpo
if (doImport) {
AstPackageImport* const impp = new AstPackageImport{stdpkgp->fileline(), stdpkgp, "*"};
unitPackage(stdpkgp->fileline())->addStmtsp(impp);
for (AstNode* itemp = v3Global.rootp()->stdPackagep()->stmtsp(); itemp;
itemp = itemp->nextp()) {
if (itemp->name() == "process") {
v3Global.rootp()->stdPackageClassp(VN_AS(itemp, Class));
UASSERT_OBJ(v3Global.rootp()->stdPackageClassp(), v3Global.rootp(),
"'std' package class should be found");
break;
}
}
}
}
}