@Override
public AttributeHandler createHandler(TreeStructure tree, Instantiator instantiator, boolean circularityCheck) {
AttributeHandler startHandler = start.createHandler(tree, instantiator, false);
AttributeHandler stepHandler = step.createHandler(tree, instantiator, false);
return new CircularAttributeHandler(startHandler, stepHandler);
}