浏览代码

refs #1730: Fixed a bug in DivideExpression in order to use in munge.

http://source.rd.rcg.local/trac/eagle6/changeset/1431/Eagle6_SVN
Jared Hall 12 年之前
父节点
当前提交
5b0294795d
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      lib/pipeline/expressions/DivideExpression.js

+ 1 - 1
lib/pipeline/expressions/DivideExpression.js

@@ -24,7 +24,7 @@ var DivideExpression = module.exports = (function(){
 
 	proto.addOperand = function addOperand(expr){
 		this.checkArgLimit(2);
-		base.addOperand.call(this, expr);
+		base.prototype.addOperand.call(this, expr);
 	};
 
 	/**