Added empty statement

This commit is contained in:
Rafał Grodziński
2025-06-01 10:39:15 +09:00
parent 05e3def411
commit 28e892ca12
5 changed files with 59 additions and 10 deletions

11
src/Statement.cpp Normal file
View File

@@ -0,0 +1,11 @@
#include "Statement.h"
Statement::Statement(Kind kind): kind(kind) {
}
string Statement::toString() {
switch (kind) {
case INVALID:
return "INVALID";
}
}