Externs lint

This commit is contained in:
Tim Schaub
2014-04-04 07:03:58 -06:00
parent 6a3d349409
commit fe60d07ef0
6 changed files with 36 additions and 13 deletions

View File

@@ -4,6 +4,7 @@
*/
/**
* FIXME check argument type
* @constructor
@@ -15,7 +16,7 @@ var VBArray = function(safeArray) {};
/**
* @return {number}
*/
VBArray.prototype.dimensions = function() {};
VBArray.prototype.dimensions = function() {return 0;};
/**
@@ -35,7 +36,7 @@ VBArray.prototype.lbound = function(opt_dimension) {};
/**
* @return {Array.<number>}
*/
VBArray.prototype.toArray = function() {};
VBArray.prototype.toArray = function() {return null;};
/**