Addes statement raw function

This commit is contained in:
Rafał Grodziński
2025-07-12 22:20:32 +09:00
parent 48cc745e79
commit c7812ccf43
7 changed files with 96 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
#include "StatementRawFunction.h"
StatementRawFunction::StatementRawFunction(string name, string rawSource):
Statement(StatementKind::RAW_FUNCTION), name(name), rawSource(rawSource) { }
string StatementRawFunction::getName() {
return name;
}
string StatementRawFunction::getRawSource() {
return rawSource;
}