- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
"WARNING - Suspicious code. The result of the 'getprop' operator is not being used."
当我使用闭包编译器时,我在我的 JavaScript 代码中看到了两行。它们是不报告问题的其他类型定义中的类型定义。我应该寻找什么?
编辑
受影响的代码:
/**
* @typedef {{playerId: number, playerName: string, baseScores: Array.<number>, bonusScores: Array.<number>,
* teamScoreAdjustments: Array.<number>}}
*/
wias.GameTableTeamMember;
/**
* @typedef {{id: number, teamMembers: Array<wias.GameTableTeamMember>, teamName: string}}
*/
wias.GameTableTeam;
/**
* @typedef {{id: number, availableRound: boolean, bonusScoring: boolean, complete: boolean, gameLength: number,
* gameType: string, lastPlayed: string, numberOfRounds: number, teams: Array.<wias.GameTableTeam>, winners:
* Array.<string>}}
*/
wias.GameTable;
警告:
wias.js:77: WARNING - Suspicious code. The result of the 'getprop' operator is not being used.
wias.GameTableTeam;
^
为什么警告在那里而不是其他地方?
最佳答案
这意味着您的代码什么都不做。
Typedef(或记录类型)更难让编译器指出问题所在的确切位置,但在某处您得到的值未被使用。
一些关于类型系统的阅读以及什么最适合编译器 https://docs.google.com/document/d/1Uq_vNyPZjlRvYZJclX6N37Fjsiah4XNciEPSBfFiREs/edit
并简单地重新创建警告
if (true) {
//have nothing in here
}
关于javascript - "WARNING - Suspicious code. The result of the ' getprop' operator is not being used."是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9124442/
在 Xcode 项目中,我收到一个奇怪的警告。它是什么?它是坏事吗? 这是警告: Project 'Little Hoot' - Enable Recommended Warning This wil
使用委托(delegate)流实现 Stream 类时,IntelliJ 发出奇怪的警告: Array of type java.lang.Object[] expected, A[] found 触
我已经阅读了这个关于可疑截断的 Lint 警告的相关问题,但这里是一个纯粹的 C 案例。 下一行是 Warning #647 弹出的地方: pCont->sig -= (signed int64_t)
FindBugs 识别出我的代码中的以下错误: Suspicious comparison of Long references 我尝试用谷歌搜索这个特定错误,但没有成功。据我所知,比较数据类型 Lo
有没有什么免费的方法可以从应用程序发送电子邮件,而不会出现“阻止可疑登录”的情况? 目前,我正在创建一个虚拟 GMail 帐户,以使用以下描述的方式从我的应用程序发送电子邮件:https://stac
这确实是一个简单的问题,涉及 Linux(而不是 Windows 或 Mac)。 如何从 C 或 C++ 编译器生成一条警告消息,其中必须包含“可疑”一词,并且必须引用 (-Wmain)。 (更新)
我正在开发一个简单的 Firefox 扩展,它跟踪请求的 url 并在后台调用 Web 服务,该服务检测 URL 是否可疑,并根据服务返回的结果,扩展决定停止页面加载并提醒用户有关伪造或其他情况的情况
我有一个模板函数,它具有执行归零的特化: template void SecureWipeBuffer(T *buf, size_t n) { volatile T *p = buf+n;
long keyIntValue; uint8_t *value; *(long *)value = keyIntValue; 我在 linting 时遇到可疑的指针到指针转换(区域太小)。帮助我了解
Android Studio/Gradle 3.4 似乎引入了一个新的 lint 错误 DiffUtilEquals .它由 DiffUtil 触发然后调用作为后备 oldItem == newIte
"WARNING - Suspicious code. The result of the 'getprop' operator is not being used." 当我使用闭包编译器时,我在我的
我用 Google 搜索了我的问题,但找不到解决方案。 当我尝试创建签名的 APK 时,我收到此错误: Error:(6) Error: Suspicious namespace and prefi
我已经在线检查了一个解决方案,尝试过此页面的解决方案:Error: Suspicious namespace and prefix combination [NamespaceTypo] when I
我是一名优秀的程序员,十分优秀!