Correct doc and arg order

This commit is contained in:
Tim Schaub
2013-06-12 17:43:57 -06:00
parent 72d32ec71a
commit 53abedaada
+4 -4
View File
@@ -14,8 +14,8 @@ goog.provide('ol.expression.Not');
/** /**
* Base class for all expressions. Instances of ol.Expression correspond to * Base class for all expressions. Instances of ol.expression.Expression
* a limited set of ECMAScript 5.1 expressions. * correspond to a limited set of ECMAScript 5.1 expressions.
* http://www.ecma-international.org/ecma-262/5.1/#sec-11 * http://www.ecma-international.org/ecma-262/5.1/#sec-11
* *
* This base class should not be constructed directly. Instead, use one of * This base class should not be constructed directly. Instead, use one of
@@ -175,8 +175,8 @@ ol.expression.Comparison.isValidOp = (function() {
/** /**
* @inheritDoc * @inheritDoc
*/ */
ol.expression.Comparison.prototype.evaluate = function(opt_scope, opt_this, ol.expression.Comparison.prototype.evaluate = function(opt_scope, opt_fns,
opt_fns) { opt_this) {
var result; var result;
var rightVal = this.right_.evaluate(opt_scope, opt_fns, opt_this); var rightVal = this.right_.evaluate(opt_scope, opt_fns, opt_this);
var leftVal = this.left_.evaluate(opt_scope, opt_fns, opt_this); var leftVal = this.left_.evaluate(opt_scope, opt_fns, opt_this);