Merge pull request #1872 from fredj/vbarray

Fix vbarray extern
This commit is contained in:
Frédéric Junod
2014-03-18 09:01:43 +01:00
+4 -4
View File
@@ -26,10 +26,10 @@ VBArray.prototype.getItem = function(var_args) {};
/** /**
* @param {number} dimension * @param {number=} opt_dimension
* @return {*} * @return {*}
*/ */
VBArray.prototype.lbound = function(dimension) {}; VBArray.prototype.lbound = function(opt_dimension) {};
/** /**
@@ -39,7 +39,7 @@ VBArray.prototype.toArray = function() {};
/** /**
* @param {number} dimension * @param {number=} opt_dimension
* @return {*} * @return {*}
*/ */
VBArray.prototype.ubound = function(dimension) {}; VBArray.prototype.ubound = function(opt_dimension) {};