I am trying to redefine Array.prototype.indexOf
for old IE versions. I am having trouble typing it correctly according to Google Closure Compiler.
It says that the type of @this
is wrong.
if (!Array.prototype.indexOf) {
/**
* @this {Array}
* @param {*} item
* @param {number=} from: ignored
* @return {number}
*/
Array.prototype.indexOf = function(item, from) {
// ...
}
}
I get the following output
test.js:12: WARNING - variable Array.prototype.indexOf redefined with type \
function (this:Array, *, number=): number, original definition at \
externs.zip//es3.js:633 with type function (this:Object, *, number=): number
Array.prototype.indexOf = function(item, from) {
^
Surprisingly, changing @this {Array}
by @this {Object}
(though it does not make much sense) returns this even more obscure message:
test.js:12: WARNING - variable Array.prototype.indexOf redefined with type \
function (this:Object, *, number=): number, original definition at \
externs.zip//es3.js:633 with type function (this:Object, *, number=): number
Array.prototype.indexOf = function(item, from) {
^
Any hint on how to do it properly?
You can use
@suppress {duplicate}
to ignore this warning:I am not sure about the implications redefining the method has on optimizations from the Closure Compiler in ADVANCED mode, though.