Update externs files for gjslint's --limited_doc_files

This commit is contained in:
Tom Payne
2012-07-15 22:34:09 +02:00
parent 13ce1aa374
commit 5c168d3b89
2 changed files with 5 additions and 13 deletions
+1 -3
View File
@@ -70,6 +70,4 @@ Proj4js.Proj.prototype.units;
* @param {Proj4js.Point|{x:number, y:number}} point Point. * @param {Proj4js.Point|{x:number, y:number}} point Point.
* @return {Proj4js.Point} Point. * @return {Proj4js.Point} Point.
*/ */
Proj4js.transform = function(source, dest, point) { Proj4js.transform = function(source, dest, point) {};
return null;
};
+4 -10
View File
@@ -21,9 +21,7 @@ var WebGLDebugUtils = {};
* @param {number} glEnum GL enum. * @param {number} glEnum GL enum.
* @return {string} String. * @return {string} String.
*/ */
WebGLDebugUtils.glEnumToString = function(glEnum) { WebGLDebugUtils.glEnumToString = function(glEnum) {};
return '';
};
/** /**
@@ -31,9 +29,7 @@ WebGLDebugUtils.glEnumToString = function(glEnum) {
* @param {Array} args Args. * @param {Array} args Args.
* @return {string} String. * @return {string} String.
*/ */
WebGLDebugUtils.glFunctionArgsToString = function(functionName, args) { WebGLDebugUtils.glFunctionArgsToString = function(functionName, args) {};
return '';
};
/** /**
@@ -49,7 +45,5 @@ WebGLDebugUtils.init = function(context) {
* @param {Function=} opt_onFunc On function. * @param {Function=} opt_onFunc On function.
* @return {WebGLDebugRenderingContext} Context. * @return {WebGLDebugRenderingContext} Context.
*/ */
WebGLDebugUtils.makeDebugContext = function( WebGLDebugUtils.makeDebugContext =
context, opt_onErrorFunc, opt_onFunc) { function(context, opt_onErrorFunc, opt_onFunc) {};
return null;
};