MCPcopy Create free account
hub / github.com/Nic30/hdlConvertor / visitSimple_variable_assignment

Method visitSimple_variable_assignment

src/vhdlConvertor/statementParser.cpp:495–504  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

493}
494
495unique_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
506unique_ptr<HdlStmAssign> VhdlStatementParser::visitConditional_variable_assignment(
507 vhdlParser::Conditional_variable_assignmentContext *ctx) {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected