Another question about AssertionInstance #707
Unanswered
HungMingWu
asked this question in
Q&A
Replies: 1 comment 2 replies
|
The sequence is not instantiated so you're just looking at the "default" instantiation, which of course has no way to fill in the arguments because... what would you put in there? If you want there to be a proper argument replacement you need to actually instantiate it. |
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi Mike, I have another question.
Here is my test code
Here is my visitor
ExpressionVisitor {}; void visit(const SequenceWithMatchExpr& expr) { expr.expr.visit(*this); for (const auto& item : expr.matchItems) item->visit(ExpressionVisitor{}); }I trace
expr.expruntilInvalidExpression, and I think it discardAssertionPortSymbolinfoHave any good idea ?
All reactions