Added empty statement
This commit is contained in:
11
src/Statement.cpp
Normal file
11
src/Statement.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#include "Statement.h"
|
||||
|
||||
Statement::Statement(Kind kind): kind(kind) {
|
||||
}
|
||||
|
||||
string Statement::toString() {
|
||||
switch (kind) {
|
||||
case INVALID:
|
||||
return "INVALID";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user