add parser

This commit is contained in:
Vu Tuan Minh
2025-04-10 10:26:34 +02:00
parent f75ca554aa
commit 9ea10fb031
6 changed files with 106 additions and 2 deletions

View File

@@ -37,6 +37,9 @@ public interface Interface{
public S visitDeclaration(DeclarationImp instr,H h);
public S visitPrint(PrintImp instr, H h);
public S visitRead(ReadImp instr,H h);
public S visitIfThen(IfThenImp instr, H h);
public S visitIfThenElse(IfThenElseImp instr, H h);
public S visitWhile(WhileImp instr, H h);
}