Files
bits-runner-builder/src/Statement.cpp
Rafał Grodziński 28e892ca12 Added empty statement
2025-06-01 10:39:15 +09:00

11 lines
183 B
C++

#include "Statement.h"
Statement::Statement(Kind kind): kind(kind) {
}
string Statement::toString() {
switch (kind) {
case INVALID:
return "INVALID";
}
}