final Sequence sequence = typeRegistry.convertToSequence(type, value);
while (sequence.hasNext())
{
final LValue lValue = sequence.nextRawValue();
final TypeValuePair pair = lValue.evaluate();
final Type type1 = pair.getType();
final Object o = pair.getValue();
final String str = typeRegistry.convertToText(type1, o);
computedResult.append(str);
}
}
return new TypeValuePair(TextType.TYPE, computedResult.toString());
}