| 493 | } |
| 494 | |
| 495 | unique_ptr<HdlStmAssign> VhdlStatementParser::visitSimple_variable_assignment( |
| 496 | vhdlParser::Simple_variable_assignmentContext *ctx) { |
| 497 | //simple_variable_assignment |
| 498 | // : target VARASGN expression SEMI |
| 499 | // ; |
| 500 | |
| 501 | return create_object<HdlStmAssign>(ctx, |
| 502 | VhdlExprParser::visitTarget(ctx->target()), |
| 503 | VhdlExprParser::visitExpression(ctx->expression()), true); |
| 504 | } |
| 505 | |
| 506 | unique_ptr<HdlStmAssign> VhdlStatementParser::visitConditional_variable_assignment( |
| 507 | vhdlParser::Conditional_variable_assignmentContext *ctx) { |
nothing calls this directly
no outgoing calls
no test coverage detected