From b50c7e99603e9f85d82d700d62c16c4fcef88715 Mon Sep 17 00:00:00 2001 From: Geno <48206120+gabrielegenovese@users.noreply.github.com> Date: Thu, 11 Jul 2024 12:57:56 +0200 Subject: Code generation (#20) Co-authored-by: geno Co-authored-by: Santo Cariotti --- src/svm/SVMVisitor.java | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/svm/SVMVisitor.java (limited to 'src/svm/SVMVisitor.java') diff --git a/src/svm/SVMVisitor.java b/src/svm/SVMVisitor.java new file mode 100644 index 0000000..d4e132d --- /dev/null +++ b/src/svm/SVMVisitor.java @@ -0,0 +1,28 @@ +// Generated from /home/gabri/Desktop/clp_project/src/svm/SVM.g4 by ANTLR 4.13.1 +package svm; + +import java.util.HashMap; + +import org.antlr.v4.runtime.tree.ParseTreeVisitor; + +/** + * This interface defines a complete generic visitor for a parse tree produced + * by {@link SVMParser}. + * + * @param The return type of the visit operation. Use {@link Void} for + * operations with no return type. + */ +public interface SVMVisitor extends ParseTreeVisitor { + /** + * Visit a parse tree produced by {@link SVMParser#assembly}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitAssembly(SVMParser.AssemblyContext ctx); + /** + * Visit a parse tree produced by {@link SVMParser#instruction}. + * @param ctx the parse tree + * @return the visitor result + */ + T visitInstruction(SVMParser.InstructionContext ctx); +} \ No newline at end of file -- cgit v1.2.3-18-g5258