X-Git-Url: https://gitweb.ps.run/toc/blobdiff_plain/8aeae09e74b46ca52866f22b48f55fecdf27b849..dbc4a22d3c8c4189459f0361cb9da06415ec2dc9:/src/repr_get.h diff --git a/src/repr_get.h b/src/repr_get.h index 70ae3b1..54aea6f 100644 --- a/src/repr_get.h +++ b/src/repr_get.h @@ -7,21 +7,33 @@ Variable getVariable(TocParser::VarContext * ctx); Body getBody(TocParser::BodyContext * ctx); Function getFunction(TocParser::FuncContext * ctx); Struct getStruct(TocParser::StructDeclContext * ctx); +Namespace getNamespace(TocParser::NamespaceDeclContext * ctx); Program getProgram(TocParser::ProgContext * ctx); -UnaryOperatorType getUnaryOperatorType(const std::string & s); -BinaryOperatorType getBinaryOperatorType(const std::string & s); -UnaryOperatorExpr getUnaryOperatorExpr(TocParser::OpExprContext * ctx); -BinaryOperatorExpr getBinaryOperatorExpr(TocParser::OpExprContext * ctx); -TernaryOperatorExpr getTernaryOperatorExpr(TocParser::OpExprContext * ctx); -Expr getExpr(TocParser::NonOpExprContext * ctx); -Expr getExpr(TocParser::NonAccessExprContext * ctx); + + +Expr getExpr(TocParser::FuncExprContext * ctx); +Expr getExpr(TocParser::MethodExprContext * ctx); +Expr getExpr(TocParser::LitExprContext * ctx); +Expr getExpr(TocParser::ParenExprContext * ctx); +Expr getExpr(TocParser::DotExprContext * ctx); +Expr getExpr(TocParser::PrefixOpExprContext * ctx); +Expr getExpr(TocParser::PostfixOpExprContext * ctx); +Expr getExpr(TocParser::BinaryOpExprContext * ctx); +Expr getExpr(TocParser::TernaryOpExprContext * ctx); +Expr getExpr(TocParser::BracketExprContext * ctx); +Expr getExpr(TocParser::IdentifierExprContext * ctx); Expr getExpr(TocParser::ExprContext * ctx); + Stmt getStmt(TocParser::StmtContext * ctx); -Type getType(TocParser::TypeContext * ctx) { +Type getType(TocParser::TypeContext * ctx) +{ Type result; + for (auto n : ctx->namespaceSpecifier()) + result.namespacePrefixes.push_back(n->typeName()->getText()); result.name = ctx->typeName()->NAME()->toString(); - for (auto m : ctx->typeModifier()) { + for (auto m : ctx->typeModifier()) + { bool isPointer = m->getText() == "*"; bool isStaticArray = m->INT_LIT() != nullptr; @@ -33,306 +45,323 @@ Type getType(TocParser::TypeContext * ctx) { } return result; } -Variable getVariable(TocParser::VarContext * ctx) { +Variable getVariable(TocParser::VarContext * ctx) +{ Variable result; result.name = ctx->varName()->NAME()->toString(); result.type = getType(ctx->type()); return result; } -Body getBody(TocParser::BodyContext * ctx) { +Body getBody(TocParser::BodyContext * ctx) +{ Body result; - for (auto s : ctx->stmt()) { - if (s->varDecl() != nullptr) { + for (auto s : ctx->stmt()) + { + if (s->varDecl() != nullptr) + { result.variables.push_back(getVariable(s->varDecl()->var())); if (s->varDecl()->var()->expr() != nullptr) result.statements.push_back(getStmt(s)); } - else { + else + { result.statements.push_back(getStmt(s)); } } return result; } -Function getFunction(TocParser::FuncContext * ctx) { +Function getFunction(TocParser::FuncContext * ctx) +{ Function result; result.name = ctx->funcName()->NAME()->toString(); result.returnType = getType(ctx->type()); - if (!ctx->parameter()->var().empty()) { + if (!ctx->parameter()->var().empty()) + { for (auto p : ctx->parameter()->var()) result.parameters.push_back(getVariable(p)); } result.body = getBody(ctx->body()); return result; } -Struct getStruct(TocParser::StructDeclContext * ctx) { +Struct getStruct(TocParser::StructDeclContext * ctx) +{ Struct result; result.name = ctx->structName()->NAME()->toString(); - for (auto m : ctx->structMember()) { - if (m->structVar() != nullptr) { - result.members.push_back(getVariable(m->structVar()->var())); + for (auto m : ctx->structMember()) + { + if (m->structVar() != nullptr) + { + result.members.push_back({ + getVariable(m->structVar()->var()), + m->privateDecl() != nullptr + }); } - if (m->structMethod() != nullptr) { - result.methods.push_back(getFunction(m->structMethod()->func())); + if (m->structMethod() != nullptr) + { + result.methods.push_back({ + getFunction(m->structMethod()->func()), + m->privateDecl() != nullptr + }); } } return result; } -Program getProgram(TocParser::ProgContext * ctx) { - Program result; - for (auto d : ctx->decl()) { - if (d->varDecl() != nullptr) { +Namespace getNamespace(TocParser::NamespaceDeclContext * ctx) +{ + Namespace result; + result.name = ctx->typeName()->getText(); + for (auto d : ctx->decl()) + { + if (d->varDecl() != nullptr) + { result.variables.push_back(getVariable(d->varDecl()->var())); } - if (d->funcDecl() != nullptr) { + if (d->funcDecl() != nullptr) + { result.functions.push_back(getFunction(d->funcDecl()->func())); } - if (d->structDecl() != nullptr) { + if (d->structDecl() != nullptr) + { result.structs.push_back(getStruct(d->structDecl())); } + if (d->namespaceDecl() != nullptr) + { + result.namespaces.push_back(getNamespace(d->namespaceDecl())); + } } return result; } -UnaryOperatorType getUnaryOperatorType(const std::string & s) { - for (int i = 0; i < (int)UnaryOperatorType::COUNT; i++) { - if (UnaryOperatorTypeStrings[i] == s) { - return (UnaryOperatorType)i; +Program getProgram(TocParser::ProgContext * ctx) +{ + Program result; + for (auto d : ctx->decl()) + { + if (d->varDecl() != nullptr) + { + result.variables.push_back(getVariable(d->varDecl()->var())); + } + if (d->funcDecl() != nullptr) + { + result.functions.push_back(getFunction(d->funcDecl()->func())); + } + if (d->structDecl() != nullptr) + { + result.structs.push_back(getStruct(d->structDecl())); + } + if (d->namespaceDecl() != nullptr) + { + result.namespaces.push_back(getNamespace(d->namespaceDecl())); } } - return UnaryOperatorType::COUNT; + return result; } -BinaryOperatorType getBinaryOperatorType(const std::string & s) { - for (int i = 0; i < (int)BinaryOperatorType::COUNT; i++) { - if (BinaryOperatorTypeStrings[i] == s) { - return (BinaryOperatorType)i; +template +OpType getOperatorType(const std::string & s, std::string typeStrings[]) +{ + for (int i = 0; i < (int)OpType::COUNT; i++) + { + if (typeStrings[i] == s) + { + return (OpType)i; } } - return BinaryOperatorType::COUNT; + return OpType::COUNT; } -UnaryOperatorExpr getUnaryOperatorExpr(TocParser::OpExprContext * ctx) { - UnaryOperatorExpr result; - if (ctx->prefixOp() != nullptr) - result.expr = std::make_unique(getExpr(ctx->prefixOp()->nonOpExpr())); - else - result.expr = std::make_unique(getExpr(ctx->postfixOp()->nonOpExpr())); - std::string op; - if (ctx->prefixOp() != nullptr) - op = ctx->prefixOp()->prefix_op()->getText(); - else - op = ctx->postfixOp()->postfix_op()->getText(); - // TODO: postfix type - result.type = getUnaryOperatorType(op); - return result; -} -BinaryOperatorExpr getBinaryOperatorExpr(TocParser::OpExprContext * ctx) { - BinaryOperatorExpr result; - result.lexpr = std::make_unique(getExpr(ctx->binaryOp()->nonOpExpr(0))); - result.rexpr = std::make_unique(getExpr(ctx->binaryOp()->nonOpExpr(1))); - - std::string op = ctx->binaryOp()->binary_op(0)->getText(); - result.type = getBinaryOperatorType(op); + + + + + + + +Expr getExpr(TocParser::FuncExprContext * ctx) +{ + Expr result; + result.type = ExprType::Func; + for (auto n : ctx->namespaceSpecifier()) + result._func.namespacePrefixes.push_back(n->typeName()->getText()); + result._func.functionName = ctx->funcName()->NAME()->toString(); + for (auto e : ctx->expr()) + result._func.arguments.push_back(getExpr(e)); return result; } -TernaryOperatorExpr getTernaryOperatorExpr(TocParser::OpExprContext * ctx) { - TernaryOperatorExpr result; - result.lexpr = std::make_unique(getExpr(ctx->ternaryOp()->nonOpExpr())); - result.rexprTrue = std::make_unique(getExpr(ctx->ternaryOp()->expr(0))); - result.rexprFalse = std::make_unique(getExpr(ctx->ternaryOp()->expr(1))); +Expr getExpr(TocParser::MethodExprContext * ctx) +{ + Expr result; + result.type = ExprType::Method; + result._method.expr = std::make_unique(getExpr(ctx->expr(0))); + result._method.methodName = ctx->funcName()->NAME()->toString(); + for (int i = 1; i < ctx->expr().size(); i++) + result._method.arguments.push_back(getExpr(ctx->expr(i))); return result; } -Expr getExpr(TocParser::NonOpExprContext * ctx) { +Expr getExpr(TocParser::LitExprContext * ctx) +{ Expr result; - result.parenthesized = false; - if (ctx->funcExpr() != nullptr) { - result.type = ExprType::Func; - result._func.functionName = ctx->funcExpr()->funcName()->NAME()->toString(); - for (auto e : ctx->funcExpr()->expr()) - result._func.arguments.push_back(getExpr(e)); + result.type = ExprType::Lit; + if (ctx->literal()->INT_LIT() != nullptr) + { + result._lit.type = LitType::Int; + result._lit._int = atoi(ctx->literal()->INT_LIT()->toString().c_str()); } - if (ctx->litExpr() != nullptr) { - result.type = ExprType::Lit; - if (ctx->litExpr()->INT_LIT() != nullptr) { - result._lit.type = LitType::Int; - result._lit._int = atoi(ctx->litExpr()->INT_LIT()->toString().c_str()); - } - else if (ctx->litExpr()->DECIMAL_LIT() != nullptr) { - result._lit.type = LitType::Decimal; - result._lit._decimal = atof(ctx->litExpr()->DECIMAL_LIT()->toString().c_str()); - } - else if (ctx->litExpr()->STRING_LIT() != nullptr) { - result._lit.type = LitType::String; - result._lit._string = ctx->litExpr()->STRING_LIT()->toString(); - } - else if (ctx->litExpr()->BOOL_LIT() != nullptr) { - result._lit.type = LitType::Bool; - result._lit._bool = ctx->litExpr()->BOOL_LIT()->toString() == "true"; - } + else if (ctx->literal()->DECIMAL_LIT() != nullptr) + { + result._lit.type = LitType::Decimal; + result._lit._decimal = atof(ctx->literal()->DECIMAL_LIT()->toString().c_str()); } - if (ctx->identifierExpr() != nullptr) { - result.type = ExprType::Identifier; - result._identifier.name = ctx->identifierExpr()->varName()->NAME()->toString(); + else if (ctx->literal()->STRING_LIT() != nullptr) + { + result._lit.type = LitType::String; + result._lit._string = ctx->literal()->STRING_LIT()->toString(); } - if (ctx->parenExpr() != nullptr) { - result = getExpr(ctx->parenExpr()->expr()); - result.parenthesized = true; - } - if (ctx->accessExpr() != nullptr) { - auto firstSub = ctx->accessExpr()->accessSubExpr(0); - if (firstSub->accessMember() != nullptr) { - result.type = ExprType::Dot; - result._dot.expr = std::make_unique(getExpr(ctx->accessExpr()->nonAccessExpr())); - result._dot.ident.name = firstSub->accessMember()->identifierExpr()->varName()->NAME()->toString(); - } - else { - result.type = ExprType::Brackets; - result._brackets.lexpr = std::make_unique(getExpr(ctx->accessExpr()->nonAccessExpr())); - result._brackets.rexpr = std::make_unique(getExpr(firstSub->accessBrackets()->expr())); - } - for (int i = 1; i < ctx->accessExpr()->accessSubExpr().size(); i++) { - Expr tmp = result; - auto sub = ctx->accessExpr()->accessSubExpr(i); - if (sub->accessMember() != nullptr) { - result.type = ExprType::Dot; - result._dot.expr = std::make_unique(tmp); - result._dot.ident.name = sub->accessMember()->identifierExpr()->varName()->NAME()->toString(); - } - else { - result.type = ExprType::Brackets; - result._brackets.lexpr = std::make_unique(tmp); - result._brackets.rexpr = std::make_unique(getExpr(sub->accessBrackets()->expr())); - } - } + else if (ctx->literal()->BOOL_LIT() != nullptr) + { + result._lit.type = LitType::Bool; + result._lit._bool = ctx->literal()->BOOL_LIT()->toString() == "true"; } return result; } -Expr getExpr(TocParser::NonAccessExprContext * ctx) { +Expr getExpr(TocParser::ParenExprContext * ctx) +{ Expr result; - result.parenthesized = false; - if (ctx->funcExpr() != nullptr) { - result.type = ExprType::Func; - result._func.functionName = ctx->funcExpr()->funcName()->NAME()->toString(); - for (auto e : ctx->funcExpr()->expr()) - result._func.arguments.push_back(getExpr(e)); - } - if (ctx->identifierExpr() != nullptr) { - result.type = ExprType::Identifier; - result._identifier.name = ctx->identifierExpr()->varName()->NAME()->toString(); - } - if (ctx->parenExpr() != nullptr) { - result = getExpr(ctx->parenExpr()->expr()); - result.parenthesized = true; - } + result.type = ExprType::Paren; + result._paren.expr = std::make_unique(getExpr(ctx->expr())); return result; } -Expr getExpr(TocParser::ExprContext * ctx) { +Expr getExpr(TocParser::DotExprContext * ctx) +{ Expr result; - result.parenthesized = false; - if (ctx->funcExpr() != nullptr) { - result.type = ExprType::Func; - result._func.functionName = ctx->funcExpr()->funcName()->NAME()->toString(); - for (auto e : ctx->funcExpr()->expr()) - result._func.arguments.push_back(getExpr(e)); - } - if (ctx->litExpr() != nullptr) { - result.type = ExprType::Lit; - if (ctx->litExpr()->INT_LIT() != nullptr) { - result._lit.type = LitType::Int; - result._lit._int = atoi(ctx->litExpr()->INT_LIT()->toString().c_str()); - } - else if (ctx->litExpr()->DECIMAL_LIT() != nullptr) { - result._lit.type = LitType::Decimal; - result._lit._decimal = atof(ctx->litExpr()->DECIMAL_LIT()->toString().c_str()); - } - else if (ctx->litExpr()->STRING_LIT() != nullptr) { - result._lit.type = LitType::String; - result._lit._string = ctx->litExpr()->STRING_LIT()->toString(); - } - else if (ctx->litExpr()->BOOL_LIT() != nullptr) { - result._lit.type = LitType::Bool; - result._lit._bool = ctx->litExpr()->BOOL_LIT()->toString() == "true"; - } - } - if (ctx->identifierExpr() != nullptr) { - result.type = ExprType::Identifier; - result._identifier.name = ctx->identifierExpr()->varName()->NAME()->toString(); - } - if (ctx->parenExpr() != nullptr) { - result = getExpr(ctx->parenExpr()->expr()); - result.parenthesized = true; - } - if (ctx->accessExpr() != nullptr) { - auto firstSub = ctx->accessExpr()->accessSubExpr(0); - if (firstSub->accessMember() != nullptr) { - result.type = ExprType::Dot; - result._dot.expr = std::make_unique(getExpr(ctx->accessExpr()->nonAccessExpr())); - result._dot.ident.name = firstSub->accessMember()->identifierExpr()->varName()->NAME()->toString(); - } - else { - result.type = ExprType::Brackets; - result._brackets.lexpr = std::make_unique(getExpr(ctx->accessExpr()->nonAccessExpr())); - result._brackets.rexpr = std::make_unique(getExpr(firstSub->accessBrackets()->expr())); - } - for (int i = 1; i < ctx->accessExpr()->accessSubExpr().size(); i++) { - Expr tmp = result; - auto sub = ctx->accessExpr()->accessSubExpr(i); - if (sub->accessMember() != nullptr) { - result.type = ExprType::Dot; - result._dot.expr = std::make_unique(tmp); - result._dot.ident.name = sub->accessMember()->identifierExpr()->varName()->NAME()->toString(); - } - else { - result.type = ExprType::Brackets; - result._brackets.lexpr = std::make_unique(tmp); - result._brackets.rexpr = std::make_unique(getExpr(sub->accessBrackets()->expr())); - } - } - } - if (ctx->opExpr() != nullptr) { - if (ctx->opExpr()->prefixOp() != nullptr || ctx->opExpr()->postfixOp() != nullptr) { - result.type = ExprType::UnaryOperator; - result._unaryOperator = getUnaryOperatorExpr(ctx->opExpr()); - } - else if (ctx->opExpr()->binaryOp() != nullptr) { - result.type = ExprType::BinaryOperator; - result._binaryOperator = getBinaryOperatorExpr(ctx->opExpr()); - for (int i = 1; i < ctx->opExpr()->binaryOp()->binary_op().size(); i++) { - Expr tmp = result; - result._binaryOperator.lexpr = std::make_unique(tmp); - result._binaryOperator.type = getBinaryOperatorType(ctx->opExpr()->binaryOp()->binary_op(i)->getText()); - result._binaryOperator.rexpr = std::make_unique(getExpr(ctx->opExpr()->binaryOp()->nonOpExpr(i+1))); - } - } - else if (ctx->opExpr()->ternaryOp() != nullptr) { - result.type = ExprType::TernaryOperator; - result._ternaryOperator = getTernaryOperatorExpr(ctx->opExpr()); - } - } + result.type = ExprType::Dot; + result._dot.expr = std::make_unique(getExpr(ctx->expr())); + result._dot.identifier = ctx->varName()->getText(); + return result; +} +Expr getExpr(TocParser::PrefixOpExprContext * ctx) +{ + Expr result; + result.type = ExprType::PrefixOp; + result._prefixOp.expr = std::make_unique(getExpr(ctx->expr())); + result._prefixOp.type = getOperatorType( + ctx->prefix_op()->getText(), + PrefixOperatorTypeStrings); + return result; +} +Expr getExpr(TocParser::PostfixOpExprContext * ctx) +{ + Expr result; + result.type = ExprType::PostfixOp; + result._postfixOp.expr = std::make_unique(getExpr(ctx->expr())); + result._postfixOp.type = getOperatorType( + ctx->postfix_op()->getText(), + PostfixOperatorTypeStrings); + return result; +} +Expr getExpr(TocParser::BinaryOpExprContext * ctx) +{ + Expr result; + result.type = ExprType::BinaryOp; + result._binaryOp.lexpr = std::make_unique(getExpr(ctx->expr(0))); + result._binaryOp.rexpr = std::make_unique(getExpr(ctx->expr(1))); + result._binaryOp.type = getOperatorType( + ctx->binary_op()->getText(), + BinaryOperatorTypeStrings); + return result; +} +Expr getExpr(TocParser::TernaryOpExprContext * ctx) +{ + Expr result; + result.type = ExprType::TernaryOp; + result._ternaryOp.lexpr = std::make_unique(getExpr(ctx->expr(0))); + result._ternaryOp.rexprTrue = std::make_unique(getExpr(ctx->expr(1))); + result._ternaryOp.rexprFalse = std::make_unique(getExpr(ctx->expr(2))); + return result; +} +Expr getExpr(TocParser::BracketExprContext * ctx) +{ + Expr result; + result.type = ExprType::Bracket; + result._brackets.lexpr = std::make_unique(getExpr(ctx->expr(0))); + result._brackets.rexpr = std::make_unique(getExpr(ctx->expr(1))); + return result; +} +Expr getExpr(TocParser::IdentifierExprContext * ctx) +{ + Expr result; + result.type = ExprType::Identifier; + for (auto n : ctx->namespaceSpecifier()) + result._identifier.namespacePrefixes.push_back(n->typeName()->getText()); + result._identifier.identifier = ctx->varName()->getText(); return result; } -Stmt getStmt(TocParser::StmtContext * ctx) { + + + + + + + + + + + +Expr getExpr(TocParser::ExprContext * ctx) +{ + Expr result; + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + if (dynamic_cast(ctx) != nullptr) + result = getExpr(dynamic_cast(ctx)); + return result; +} +Stmt getStmt(TocParser::StmtContext * ctx) +{ Stmt result; - if (ctx->varDecl() != nullptr && ctx->varDecl()->var()->expr() != nullptr) { + if (ctx->varDecl() != nullptr && ctx->varDecl()->var()->expr() != nullptr) + { result.type = StmtType::Assign; - result._assign.name = ctx->varDecl()->var()->varName()->NAME()->toString(); - result._assign.expr = getExpr(ctx->varDecl()->var()->expr()); + result._assign.lexpr.type = ExprType::Identifier; + result._assign.lexpr._identifier.identifier = ctx->varDecl()->var()->varName()->getText(); + result._assign.rexpr = getExpr(ctx->varDecl()->var()->expr()); } - if (ctx->ifStmt() != nullptr) { + if (ctx->ifStmt() != nullptr) + { result.type = StmtType::If; result._if.condition = getExpr(ctx->ifStmt()->expr()); result._if.body = getBody(ctx->ifStmt()->body()); - for (auto ei : ctx->ifStmt()->elseIfStmt()) { + for (auto ei : ctx->ifStmt()->elseIfStmt()) + { result._if.elses.emplace_back( true, std::make_unique(getExpr(ei->expr())), getBody(ei->body()) ); } - if (ctx->ifStmt()->elseStmt() != nullptr) { + if (ctx->ifStmt()->elseStmt() != nullptr) + { result._if.elses.emplace_back( false, nullptr, @@ -340,45 +369,48 @@ Stmt getStmt(TocParser::StmtContext * ctx) { ); } } - if (ctx->switchStmt() != nullptr) { + if (ctx->switchStmt() != nullptr) + { result.type = StmtType::Switch; - result._switch.ident.name = ctx->switchStmt()->identifierExpr()->varName()->NAME()->toString(); - for (auto c : ctx->switchStmt()->switchBody()->switchCase()) { + result._switch.ident = std::make_unique(getExpr(ctx->switchStmt()->expr())); + for (auto c : ctx->switchStmt()->switchBody()->switchCase()) + { result._switch.cases.emplace_back( std::make_unique(getExpr(c->expr())), getBody(c->body()) ); } } - if (ctx->forStmt() != nullptr) { + if (ctx->forStmt() != nullptr) + { result.type = StmtType::For; - if (ctx->forStmt()->varInit() != nullptr) { - result._for.varName = ctx->forStmt()->varInit()->varName()->NAME()->toString(); - result._for.initValue = std::make_unique(getExpr(ctx->forStmt()->varInit()->expr())); - } - else { - result._for.varName = ctx->forStmt()->assignStmt()->identifierExpr()->varName()->NAME()->toString(); - result._for.initValue = std::make_unique(getExpr(ctx->forStmt()->assignStmt()->expr())); - } + result._for.init = std::make_unique(); + result._for.init->lexpr.type = ExprType::Identifier; + result._for.init->lexpr._identifier.identifier = ctx->forStmt()->varInit()->varName()->getText(); + result._for.init->rexpr = getExpr(ctx->forStmt()->varInit()->expr()); result._for.condition = std::make_unique(getExpr(ctx->forStmt()->expr(0))); result._for.action = std::make_unique(getExpr(ctx->forStmt()->expr(1))); result._for.body = getBody(ctx->forStmt()->body()); } - if (ctx->whileStmt() != nullptr) { + if (ctx->whileStmt() != nullptr) + { result.type = StmtType::While; result._while.condition = getExpr(ctx->whileStmt()->expr()); result._while.body = getBody(ctx->whileStmt()->body()); } - if (ctx->assignStmt() != nullptr) { + if (ctx->assignStmt() != nullptr) + { result.type = StmtType::Assign; - result._assign.name = ctx->assignStmt()->identifierExpr()->varName()->NAME()->toString(); - result._assign.expr = getExpr(ctx->assignStmt()->expr()); + result._assign.lexpr = getExpr(ctx->assignStmt()->expr(0)); + result._assign.rexpr = getExpr(ctx->assignStmt()->expr(1)); } - if (ctx->returnStmt() != nullptr) { + if (ctx->returnStmt() != nullptr) + { result.type = StmtType::Return; result._return.expr = getExpr(ctx->returnStmt()->expr()); } - if (ctx->expr() != nullptr) { + if (ctx->expr() != nullptr) + { result.type = StmtType::Expr; result._expr = getExpr(ctx->expr()); }