JetCore/__exclude.cpp
2025-05-06 07:33:04 -07:00

14 lines
376 B
C++

#include "__exclude.h"
#include "Exception.h"
namespace jet {
__exclude::__exclude(coreutils::ZString &in, coreutils::MString &parentOut, Global &global, Tag *parent, Tag *local) : Tag(in, parentOut, global, parent, this) {
if(!hasContainer)
throw coreutils::Exception("exclude must have a container.");
output = true;
evaluate = false;
}
}