Fix vbarray extern

dimension argument is optional.
See http://msdn.microsoft.com/en-us/library/3kk8f869(v=vs.94).aspx
and http://msdn.microsoft.com/en-us/library/0kbz883e(v=vs.94).aspx
This commit is contained in:
Frederic Junod
2014-03-18 08:14:31 +01:00
parent 1b6f0a3fd1
commit b04639ccc5
+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) {};