write out string concatenation in the more common way

This commit is contained in:
Bart van den Eijnden
2013-10-11 14:24:33 +02:00
committed by Bart van den Eijnden
parent ee7d46cea1
commit 924e9c6fce

View File

@@ -508,7 +508,14 @@ ol.parser.ogc.Filter_v1.prototype.write = function(filter) {
*/
ol.parser.ogc.Filter_v1.prototype.writeOgcExpression = function(expr, node) {
if (expr instanceof ol.expr.Call) {
this.writeNode('Function', expr, null, node);
if (ol.expr.isLibCall(expr) === ol.expr.functions.CONCAT) {
var args = expr.getArgs();
for (var i = 0, ii = args.length; i < ii; ++i) {
this.writeOgcExpression(args[i], node);
}
} else {
this.writeNode('Function', expr, null, node);
}
} else if (expr instanceof ol.expr.Literal) {
this.writeNode('Literal', expr, null, node);
} else if (expr instanceof ol.expr.Identifier) {