Correct types

This commit is contained in:
Tim Schaub
2013-06-11 10:19:12 -06:00
parent 7a1e69e288
commit 737d669e4a
2 changed files with 10 additions and 5 deletions

View File

@@ -154,7 +154,7 @@ ol.expression.Parser.prototype.createBinaryExpression_ = function(operator,
* @private
*/
ol.expression.Parser.prototype.createCallExpression_ = function(expr, args) {
return new ol.expressions.Call(expr, args);
return new ol.expression.Call(expr, args);
};