src/visualizer/CSTVisualizer.h
| Line | Branch | Exec | Source |
|---|---|---|---|
| 1 | // Copyright (c) 2021-2026 ChilliBits. All rights reserved. | ||
| 2 | |||
| 3 | #pragma once | ||
| 4 | |||
| 5 | #include <SpiceLexer.h> | ||
| 6 | #include <SpiceVisitor.h> | ||
| 7 | |||
| 8 | #include <CompilerPass.h> | ||
| 9 | |||
| 10 | namespace spice::compiler { | ||
| 11 | |||
| 12 | /** | ||
| 13 | * Visitor for debug purposes (is only executed in the compiler debug mode and when explicitly enabling it via cli flag) | ||
| 14 | * | ||
| 15 | * Jobs: | ||
| 16 | * - Visualize CST | ||
| 17 | */ | ||
| 18 | class CSTVisualizer final : CompilerPass, public SpiceVisitor { | ||
| 19 | public: | ||
| 20 | // Constructors | ||
| 21 | 1880 | CSTVisualizer(GlobalResourceManager &resourceManager, SourceFile *sourceFile, const SpiceLexer *lexer, | |
| 22 | const SpiceParser *parser) | ||
| 23 |
3/6✓ Branch 4 → 5 taken 1880 times.
✗ Branch 4 → 9 not taken.
✓ Branch 5 → 6 taken 1880 times.
✗ Branch 5 → 9 not taken.
✓ Branch 6 → 7 taken 1880 times.
✗ Branch 6 → 9 not taken.
|
1880 | : CompilerPass(resourceManager, sourceFile), vocabulary(lexer->getVocabulary()), ruleNames(parser->getRuleNames()) {} |
| 24 | |||
| 25 | // Visitor methods | ||
| 26 |
2/4✓ Branch 2 → 3 taken 1880 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 1880 times.
✗ Branch 3 → 8 not taken.
|
3760 | std::any visitEntry(SpiceParser::EntryContext *ctx) override { return buildRule(ctx); } |
| 27 |
2/4✓ Branch 2 → 3 taken 7 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 7 times.
✗ Branch 3 → 8 not taken.
|
14 | std::any visitMainFunctionDef(SpiceParser::MainFunctionDefContext *ctx) override { return buildRule(ctx); } |
| 28 |
2/4✓ Branch 2 → 3 taken 20053 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 20053 times.
✗ Branch 3 → 8 not taken.
|
40106 | std::any visitFunctionDef(SpiceParser::FunctionDefContext *ctx) override { return buildRule(ctx); } |
| 29 |
2/4✓ Branch 2 → 3 taken 10566 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 10566 times.
✗ Branch 3 → 8 not taken.
|
21132 | std::any visitProcedureDef(SpiceParser::ProcedureDefContext *ctx) override { return buildRule(ctx); } |
| 30 |
2/4✓ Branch 2 → 3 taken 30619 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 30619 times.
✗ Branch 3 → 8 not taken.
|
61238 | std::any visitFctName(SpiceParser::FctNameContext *ctx) override { return buildRule(ctx); } |
| 31 |
2/4✓ Branch 2 → 3 taken 1895 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 1895 times.
✗ Branch 3 → 8 not taken.
|
3790 | std::any visitGenericTypeDef(SpiceParser::GenericTypeDefContext *ctx) override { return buildRule(ctx); } |
| 32 |
2/4✓ Branch 2 → 3 taken 334 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 334 times.
✗ Branch 3 → 8 not taken.
|
668 | std::any visitAliasDef(SpiceParser::AliasDefContext *ctx) override { return buildRule(ctx); } |
| 33 |
2/4✓ Branch 2 → 3 taken 2818 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 2818 times.
✗ Branch 3 → 8 not taken.
|
5636 | std::any visitStructDef(SpiceParser::StructDefContext *ctx) override { return buildRule(ctx); } |
| 34 |
2/4✓ Branch 2 → 3 taken 347 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 347 times.
✗ Branch 3 → 8 not taken.
|
694 | std::any visitInterfaceDef(SpiceParser::InterfaceDefContext *ctx) override { return buildRule(ctx); } |
| 35 |
2/4✓ Branch 2 → 3 taken 362 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 362 times.
✗ Branch 3 → 8 not taken.
|
724 | std::any visitEnumDef(SpiceParser::EnumDefContext *ctx) override { return buildRule(ctx); } |
| 36 |
2/4✓ Branch 2 → 3 taken 2371 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 2371 times.
✗ Branch 3 → 8 not taken.
|
4742 | std::any visitGlobalVarDef(SpiceParser::GlobalVarDefContext *ctx) override { return buildRule(ctx); } |
| 37 |
2/4✓ Branch 2 → 3 taken 2974 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 2974 times.
✗ Branch 3 → 8 not taken.
|
5948 | std::any visitExtDecl(SpiceParser::ExtDeclContext *ctx) override { return buildRule(ctx); } |
| 38 |
2/4✓ Branch 2 → 3 taken 2211 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 2211 times.
✗ Branch 3 → 8 not taken.
|
4422 | std::any visitImportDef(SpiceParser::ImportDefContext *ctx) override { return buildRule(ctx); } |
| 39 |
2/4✓ Branch 2 → 3 taken 5676 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 5676 times.
✗ Branch 3 → 8 not taken.
|
11352 | std::any visitUnsafeBlock(SpiceParser::UnsafeBlockContext *ctx) override { return buildRule(ctx); } |
| 40 |
2/4✓ Branch 2 → 3 taken 2660 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 2660 times.
✗ Branch 3 → 8 not taken.
|
5320 | std::any visitForLoop(SpiceParser::ForLoopContext *ctx) override { return buildRule(ctx); } |
| 41 |
2/4✓ Branch 2 → 3 taken 2660 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 2660 times.
✗ Branch 3 → 8 not taken.
|
5320 | std::any visitForHead(SpiceParser::ForHeadContext *ctx) override { return buildRule(ctx); } |
| 42 |
2/4✓ Branch 2 → 3 taken 394 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 394 times.
✗ Branch 3 → 8 not taken.
|
788 | std::any visitForeachLoop(SpiceParser::ForeachLoopContext *ctx) override { return buildRule(ctx); } |
| 43 |
2/4✓ Branch 2 → 3 taken 394 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 394 times.
✗ Branch 3 → 8 not taken.
|
788 | std::any visitForeachHead(SpiceParser::ForeachHeadContext *ctx) override { return buildRule(ctx); } |
| 44 |
2/4✓ Branch 2 → 3 taken 1653 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 1653 times.
✗ Branch 3 → 8 not taken.
|
3306 | std::any visitWhileLoop(SpiceParser::WhileLoopContext *ctx) override { return buildRule(ctx); } |
| 45 |
2/4✓ Branch 2 → 3 taken 10 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 10 times.
✗ Branch 3 → 8 not taken.
|
20 | std::any visitDoWhileLoop(SpiceParser::DoWhileLoopContext *ctx) override { return buildRule(ctx); } |
| 46 |
2/4✓ Branch 2 → 3 taken 12581 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 12581 times.
✗ Branch 3 → 8 not taken.
|
25162 | std::any visitIfStmt(SpiceParser::IfStmtContext *ctx) override { return buildRule(ctx); } |
| 47 |
2/4✓ Branch 2 → 3 taken 1009 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 1009 times.
✗ Branch 3 → 8 not taken.
|
2018 | std::any visitElseStmt(SpiceParser::ElseStmtContext *ctx) override { return buildRule(ctx); } |
| 48 |
2/4✓ Branch 2 → 3 taken 78 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 78 times.
✗ Branch 3 → 8 not taken.
|
156 | std::any visitSwitchStmt(SpiceParser::SwitchStmtContext *ctx) override { return buildRule(ctx); } |
| 49 |
2/4✓ Branch 2 → 3 taken 640 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 640 times.
✗ Branch 3 → 8 not taken.
|
1280 | std::any visitCaseBranch(SpiceParser::CaseBranchContext *ctx) override { return buildRule(ctx); } |
| 50 |
2/4✓ Branch 2 → 3 taken 66 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 66 times.
✗ Branch 3 → 8 not taken.
|
132 | std::any visitDefaultBranch(SpiceParser::DefaultBranchContext *ctx) override { return buildRule(ctx); } |
| 51 |
2/4✓ Branch 2 → 3 taken 1648 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 1648 times.
✗ Branch 3 → 8 not taken.
|
3296 | std::any visitAssertStmt(SpiceParser::AssertStmtContext *ctx) override { return buildRule(ctx); } |
| 52 |
2/4✓ Branch 2 → 3 taken 8 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 8 times.
✗ Branch 3 → 8 not taken.
|
16 | std::any visitAnonymousBlockStmt(SpiceParser::AnonymousBlockStmtContext *ctx) override { return buildRule(ctx); } |
| 53 |
2/4✓ Branch 2 → 3 taken 55002 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 55002 times.
✗ Branch 3 → 8 not taken.
|
110004 | std::any visitStmtLst(SpiceParser::StmtLstContext *ctx) override { return buildRule(ctx); } |
| 54 |
2/4✓ Branch 2 → 3 taken 5208 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 5208 times.
✗ Branch 3 → 8 not taken.
|
10416 | std::any visitField(SpiceParser::FieldContext *ctx) override { return buildRule(ctx); } |
| 55 |
2/4✓ Branch 2 → 3 taken 2328 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 2328 times.
✗ Branch 3 → 8 not taken.
|
4656 | std::any visitSignature(SpiceParser::SignatureContext *ctx) override { return buildRule(ctx); } |
| 56 |
2/4✓ Branch 2 → 3 taken 19533 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 19533 times.
✗ Branch 3 → 8 not taken.
|
39066 | std::any visitTypeLst(SpiceParser::TypeLstContext *ctx) override { return buildRule(ctx); } |
| 57 |
2/4✓ Branch 2 → 3 taken 2769 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 2769 times.
✗ Branch 3 → 8 not taken.
|
5538 | std::any visitTypeLstWithEllipsis(SpiceParser::TypeLstWithEllipsisContext *ctx) override { return buildRule(ctx); } |
| 58 |
2/4✓ Branch 2 → 3 taken 1895 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 1895 times.
✗ Branch 3 → 8 not taken.
|
3790 | std::any visitTypeAltsLst(SpiceParser::TypeAltsLstContext *ctx) override { return buildRule(ctx); } |
| 59 |
2/4✓ Branch 2 → 3 taken 23250 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 23250 times.
✗ Branch 3 → 8 not taken.
|
46500 | std::any visitParamLst(SpiceParser::ParamLstContext *ctx) override { return buildRule(ctx); } |
| 60 |
2/4✓ Branch 2 → 3 taken 36981 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 36981 times.
✗ Branch 3 → 8 not taken.
|
73962 | std::any visitArgLst(SpiceParser::ArgLstContext *ctx) override { return buildRule(ctx); } |
| 61 |
2/4✓ Branch 2 → 3 taken 362 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 362 times.
✗ Branch 3 → 8 not taken.
|
724 | std::any visitEnumItemLst(SpiceParser::EnumItemLstContext *ctx) override { return buildRule(ctx); } |
| 62 |
2/4✓ Branch 2 → 3 taken 4899 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 4899 times.
✗ Branch 3 → 8 not taken.
|
9798 | std::any visitEnumItem(SpiceParser::EnumItemContext *ctx) override { return buildRule(ctx); } |
| 63 |
2/4✓ Branch 2 → 3 taken 74792 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 74792 times.
✗ Branch 3 → 8 not taken.
|
149584 | std::any visitStmt(SpiceParser::StmtContext *ctx) override { return buildRule(ctx); } |
| 64 |
2/4✓ Branch 2 → 3 taken 50436 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 50436 times.
✗ Branch 3 → 8 not taken.
|
100872 | std::any visitDeclStmt(SpiceParser::DeclStmtContext *ctx) override { return buildRule(ctx); } |
| 65 |
2/4✓ Branch 2 → 3 taken 34786 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 34786 times.
✗ Branch 3 → 8 not taken.
|
69572 | std::any visitExprStmt(SpiceParser::ExprStmtContext *ctx) override { return buildRule(ctx); } |
| 66 |
2/4✓ Branch 2 → 3 taken 81396 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 81396 times.
✗ Branch 3 → 8 not taken.
|
162792 | std::any visitQualifierLst(SpiceParser::QualifierLstContext *ctx) override { return buildRule(ctx); } |
| 67 |
2/4✓ Branch 2 → 3 taken 96347 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 96347 times.
✗ Branch 3 → 8 not taken.
|
192694 | std::any visitQualifier(SpiceParser::QualifierContext *ctx) override { return buildRule(ctx); } |
| 68 |
2/4✓ Branch 2 → 3 taken 692 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 692 times.
✗ Branch 3 → 8 not taken.
|
1384 | std::any visitModAttr(SpiceParser::ModAttrContext *ctx) override { return buildRule(ctx); } |
| 69 |
2/4✓ Branch 2 → 3 taken 942 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 942 times.
✗ Branch 3 → 8 not taken.
|
1884 | std::any visitTopLevelDefAttr(SpiceParser::TopLevelDefAttrContext *ctx) override { return buildRule(ctx); } |
| 70 | ✗ | std::any visitLambdaAttr(SpiceParser::LambdaAttrContext *ctx) override { return buildRule(ctx); } | |
| 71 |
2/4✓ Branch 2 → 3 taken 1634 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 1634 times.
✗ Branch 3 → 8 not taken.
|
3268 | std::any visitAttrLst(SpiceParser::AttrLstContext *ctx) override { return buildRule(ctx); } |
| 72 |
2/4✓ Branch 2 → 3 taken 3256 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 3256 times.
✗ Branch 3 → 8 not taken.
|
6512 | std::any visitAttr(SpiceParser::AttrContext *ctx) override { return buildRule(ctx); } |
| 73 |
2/4✓ Branch 2 → 3 taken 825 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 825 times.
✗ Branch 3 → 8 not taken.
|
1650 | std::any visitCaseConstant(SpiceParser::CaseConstantContext *ctx) override { return buildRule(ctx); } |
| 74 |
2/4✓ Branch 2 → 3 taken 25818 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 25818 times.
✗ Branch 3 → 8 not taken.
|
51636 | std::any visitReturnStmt(SpiceParser::ReturnStmtContext *ctx) override { return buildRule(ctx); } |
| 75 |
2/4✓ Branch 2 → 3 taken 226 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 226 times.
✗ Branch 3 → 8 not taken.
|
452 | std::any visitBreakStmt(SpiceParser::BreakStmtContext *ctx) override { return buildRule(ctx); } |
| 76 |
2/4✓ Branch 2 → 3 taken 402 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 402 times.
✗ Branch 3 → 8 not taken.
|
804 | std::any visitContinueStmt(SpiceParser::ContinueStmtContext *ctx) override { return buildRule(ctx); } |
| 77 | ✗ | std::any visitFallthroughStmt(SpiceParser::FallthroughStmtContext *ctx) override { return buildRule(ctx); } | |
| 78 |
2/4✓ Branch 2 → 3 taken 187071 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 187071 times.
✗ Branch 3 → 8 not taken.
|
374142 | std::any visitAssignExpr(SpiceParser::AssignExprContext *ctx) override { return buildRule(ctx); } |
| 79 |
2/4✓ Branch 2 → 3 taken 169580 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 169580 times.
✗ Branch 3 → 8 not taken.
|
339160 | std::any visitTernaryExpr(SpiceParser::TernaryExprContext *ctx) override { return buildRule(ctx); } |
| 80 |
2/4✓ Branch 2 → 3 taken 173260 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 173260 times.
✗ Branch 3 → 8 not taken.
|
346520 | std::any visitLogicalOrExpr(SpiceParser::LogicalOrExprContext *ctx) override { return buildRule(ctx); } |
| 81 |
2/4✓ Branch 2 → 3 taken 175831 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 175831 times.
✗ Branch 3 → 8 not taken.
|
351662 | std::any visitLogicalAndExpr(SpiceParser::LogicalAndExprContext *ctx) override { return buildRule(ctx); } |
| 82 |
2/4✓ Branch 2 → 3 taken 177207 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 177207 times.
✗ Branch 3 → 8 not taken.
|
354414 | std::any visitBitwiseOrExpr(SpiceParser::BitwiseOrExprContext *ctx) override { return buildRule(ctx); } |
| 83 |
2/4✓ Branch 2 → 3 taken 177470 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 177470 times.
✗ Branch 3 → 8 not taken.
|
354940 | std::any visitBitwiseXorExpr(SpiceParser::BitwiseXorExprContext *ctx) override { return buildRule(ctx); } |
| 84 |
2/4✓ Branch 2 → 3 taken 177495 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 177495 times.
✗ Branch 3 → 8 not taken.
|
354990 | std::any visitBitwiseAndExpr(SpiceParser::BitwiseAndExprContext *ctx) override { return buildRule(ctx); } |
| 85 |
2/4✓ Branch 2 → 3 taken 177539 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 177539 times.
✗ Branch 3 → 8 not taken.
|
355078 | std::any visitEqualityExpr(SpiceParser::EqualityExprContext *ctx) override { return buildRule(ctx); } |
| 86 |
2/4✓ Branch 2 → 3 taken 191905 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 191905 times.
✗ Branch 3 → 8 not taken.
|
383810 | std::any visitRelationalExpr(SpiceParser::RelationalExprContext *ctx) override { return buildRule(ctx); } |
| 87 |
2/4✓ Branch 2 → 3 taken 199990 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 199990 times.
✗ Branch 3 → 8 not taken.
|
399980 | std::any visitShiftExpr(SpiceParser::ShiftExprContext *ctx) override { return buildRule(ctx); } |
| 88 |
2/4✓ Branch 2 → 3 taken 200966 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 200966 times.
✗ Branch 3 → 8 not taken.
|
401932 | std::any visitAdditiveExpr(SpiceParser::AdditiveExprContext *ctx) override { return buildRule(ctx); } |
| 89 |
2/4✓ Branch 2 → 3 taken 209698 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 209698 times.
✗ Branch 3 → 8 not taken.
|
419396 | std::any visitMultiplicativeExpr(SpiceParser::MultiplicativeExprContext *ctx) override { return buildRule(ctx); } |
| 90 |
2/4✓ Branch 2 → 3 taken 212846 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 212846 times.
✗ Branch 3 → 8 not taken.
|
425692 | std::any visitCastExpr(SpiceParser::CastExprContext *ctx) override { return buildRule(ctx); } |
| 91 |
2/4✓ Branch 2 → 3 taken 229306 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 229306 times.
✗ Branch 3 → 8 not taken.
|
458612 | std::any visitPrefixUnaryExpr(SpiceParser::PrefixUnaryExprContext *ctx) override { return buildRule(ctx); } |
| 92 |
2/4✓ Branch 2 → 3 taken 287789 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 287789 times.
✗ Branch 3 → 8 not taken.
|
575578 | std::any visitPostfixUnaryExpr(SpiceParser::PostfixUnaryExprContext *ctx) override { return buildRule(ctx); } |
| 93 |
2/4✓ Branch 2 → 3 taken 225438 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 225438 times.
✗ Branch 3 → 8 not taken.
|
450876 | std::any visitAtomicExpr(SpiceParser::AtomicExprContext *ctx) override { return buildRule(ctx); } |
| 94 |
2/4✓ Branch 2 → 3 taken 53712 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 53712 times.
✗ Branch 3 → 8 not taken.
|
107424 | std::any visitValue(SpiceParser::ValueContext *ctx) override { return buildRule(ctx); } |
| 95 |
2/4✓ Branch 2 → 3 taken 47498 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 47498 times.
✗ Branch 3 → 8 not taken.
|
94996 | std::any visitFctCall(SpiceParser::FctCallContext *ctx) override { return buildRule(ctx); } |
| 96 |
2/4✓ Branch 2 → 3 taken 218 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 218 times.
✗ Branch 3 → 8 not taken.
|
436 | std::any visitArrayInitialization(SpiceParser::ArrayInitializationContext *ctx) override { return buildRule(ctx); } |
| 97 |
2/4✓ Branch 2 → 3 taken 861 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 861 times.
✗ Branch 3 → 8 not taken.
|
1722 | std::any visitStructInstantiation(SpiceParser::StructInstantiationContext *ctx) override { return buildRule(ctx); } |
| 98 | ✗ | std::any visitLambdaFunc(SpiceParser::LambdaFuncContext *ctx) override { return buildRule(ctx); } | |
| 99 |
2/4✓ Branch 2 → 3 taken 49 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 49 times.
✗ Branch 3 → 8 not taken.
|
98 | std::any visitLambdaProc(SpiceParser::LambdaProcContext *ctx) override { return buildRule(ctx); } |
| 100 | ✗ | std::any visitLambdaExpr(SpiceParser::LambdaExprContext *ctx) override { return buildRule(ctx); } | |
| 101 |
2/4✓ Branch 2 → 3 taken 41070 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 41070 times.
✗ Branch 3 → 8 not taken.
|
82140 | std::any visitConstant(SpiceParser::ConstantContext *ctx) override { return buildRule(ctx); } |
| 102 |
2/4✓ Branch 2 → 3 taken 123988 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 123988 times.
✗ Branch 3 → 8 not taken.
|
247976 | std::any visitDataType(SpiceParser::DataTypeContext *ctx) override { return buildRule(ctx); } |
| 103 |
2/4✓ Branch 2 → 3 taken 123988 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 123988 times.
✗ Branch 3 → 8 not taken.
|
247976 | std::any visitBaseDataType(SpiceParser::BaseDataTypeContext *ctx) override { return buildRule(ctx); } |
| 104 |
2/4✓ Branch 2 → 3 taken 58043 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 58043 times.
✗ Branch 3 → 8 not taken.
|
116086 | std::any visitCustomDataType(SpiceParser::CustomDataTypeContext *ctx) override { return buildRule(ctx); } |
| 105 |
2/4✓ Branch 2 → 3 taken 137 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 137 times.
✗ Branch 3 → 8 not taken.
|
274 | std::any visitFunctionDataType(SpiceParser::FunctionDataTypeContext *ctx) override { return buildRule(ctx); } |
| 106 |
2/4✓ Branch 2 → 3 taken 19150 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 19150 times.
✗ Branch 3 → 8 not taken.
|
38300 | std::any visitAssignOp(SpiceParser::AssignOpContext *ctx) override { return buildRule(ctx); } |
| 107 |
2/4✓ Branch 2 → 3 taken 3551 times.
✗ Branch 2 → 10 not taken.
✓ Branch 3 → 4 taken 3551 times.
✗ Branch 3 → 8 not taken.
|
7102 | std::any visitOverloadableOp(SpiceParser::OverloadableOpContext *ctx) override { return buildRule(ctx); } |
| 108 | |||
| 109 | private: | ||
| 110 | // Members | ||
| 111 | const antlr4::dfa::Vocabulary &vocabulary; | ||
| 112 | const std::vector<std::string> ruleNames; | ||
| 113 | int currentTabs = 1; | ||
| 114 | std::string parentNodeId; | ||
| 115 | |||
| 116 | // Private methods | ||
| 117 | std::string buildRule(const antlr4::ParserRuleContext *ctx); | ||
| 118 | [[nodiscard]] std::string getSpaces() const; | ||
| 119 | [[nodiscard]] static std::string tokenToCodeLoc(const antlr4::Token &token); | ||
| 120 | }; | ||
| 121 | |||
| 122 | } // namespace spice::compiler | ||
| 123 |