gpt4 book ai didi

javascript - 告诉 Closure Compiler/Linter 忽略特定行的注释

转载 作者:行者123 更新时间:2023-11-28 08:34:35 33 4
gpt4 key购买 nike

您用来告诉 Closure Compiler/Linter 忽略特定行的注释是什么?我记得是这样的:

var x = "some line that is too big"; /** CLOSURE_IGNORE E0101 */

这不是确切的语法。讽刺的是,我在 Google 上找不到它...有人知道吗?

最佳答案

您可以使用 goog.DEBUG 标志来执行此操作。其使用的详细描述可以在 Closure: The Definitive Guide 中找到。 .

假设您的代码如下所示:

var foo = 'bar';
if (goog.DEBUG) {
doDebugOnlyWork();
}
var fizz = 'buzz';

编译后,编译器将删除 goog.DEBUG 分支中的代码。除了混淆和优化之外,这将导致与此等效的功能:

var foo = 'bar';
var fizz = 'buzz';

关于javascript - 告诉 Closure Compiler/Linter 忽略特定行的注释,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21392789/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com