我在一个函数中收到了一些可疑的代码警告。我想抑制suspiciousCode
该函数中类型的警告错误 - 而不是整个文件。
谷歌关闭 wiki告诉我使用 @suppress {suspiciousCode}
,但这不起作用,并给了我另一个警告:JSC_PARSE_ERROR: Parse error. unknown @suppress parameter: suspiciousCode
.
重要的代码行:
/**
* This is a function where type checking is disabled.
* @suppress {suspiciousCode}
*/
(function(a,b){
这可能与包装功能有关吗?
编辑:
这些是我想禁止的错误代码:
JSC_SUSPICIOUS_SEMICOLON: If this if/for/while really shouldnt have a body, use {}
JSC_USELESS_CODE: Suspicious code. The result of the 'getprop' operator is not being used.
JSC_USELESS_CODE: Suspicious code. This code lacks side-effects. Is there a bug?
我已经检查了警告,它们正是我想要的。