JetCore/__for.cpp
2022-05-19 11:43:15 -07:00

20 lines
470 B
C++

#include "__for.h"
#include "Exception.h"
#include <iostream>
namespace jet {
__for::__for(coreutils::ZString &in, coreutils::MString &out) : Tag(in, out) {
if(!keywordExists(coreutils::ZString("begin")))
throw coreutils::Exception("begin keyword must be specified.");
if(!keywordExists(coreutils::ZString("end")))
throw coreutils::Exception("end keyword must be specified.");
for(;;) {
parseContainer(container);
}
}
}