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:
+4
-4
@@ -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) {};
|
||||||
|
|||||||
Reference in New Issue
Block a user