introduce transpile to cpp

This commit is contained in:
2020-10-30 20:35:01 +05:30
parent e6e225b639
commit 75f71259a0
9 changed files with 263 additions and 45 deletions

View File

@@ -22,4 +22,6 @@ class toBFListener : public bfeBaseListener {
void exitLoopStmt(bfeParser::LoopStmtContext *ctx) override;
void enterGroupedStmt(bfeParser::GroupedStmtContext *ctx) override;
void exitGroupedStmt(bfeParser::GroupedStmtContext *ctx) override;
void enterOutputStmt(bfeParser::OutputStmtContext *ctx) override;
void enterInputStmt(bfeParser::InputStmtContext *ctx) override;
};