#include "__for.h" #include "Exception.h" #include namespace jet { __for::__for(coreutils::ZString &in, coreutils::MString &out, Global &global) : Tag(in, out, global) { double counter = 0.0f; double end = 0.0f; double step = 0.0f; bool nameDefined = variableDefined("name"); if(variableDefined(coreutils::ZString("start"))) { counter = variables["start"].asDouble(); } if(variableDefined(coreutils::ZString("end"))) { end = variables["end"].asDouble(); } if(variableDefined(coreutils::ZString("step"))) { step = variables["step"].asDouble(); } for(double ix = counter; ix <= end; ix += step) { if(nameDefined) variables[variables["name"]] = ix; processContainer(container); container.reset(); } } }