Addes statement raw function
This commit is contained in:
12
src/Parser/Statement/StatementRawFunction.cpp
Normal file
12
src/Parser/Statement/StatementRawFunction.cpp
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user