11 lines
183 B
C++
11 lines
183 B
C++
#include "Statement.h"
|
|
|
|
Statement::Statement(Kind kind): kind(kind) {
|
|
}
|
|
|
|
string Statement::toString() {
|
|
switch (kind) {
|
|
case INVALID:
|
|
return "INVALID";
|
|
}
|
|
} |