2

我有一些代码,我想通过 Google Closure Compiler 运行。

然而,问题是,除了我自己的代码之外,还有一段已经缩小的代码片段,我无法获得其原始来源。

因此,当通过编译器运行它时,缩小的代码会再次被编译,从而完全搞砸了。

任何人都知道注释或其他技术来防止 Google Closure Compiler 编译代码的某些部分?

// my code
function someFunction() {
  // some code blabla
}

someFunction();

// already minified code; should be preserved in its state
!function(){window.a='abc'; /* ... */ }();

PS:我知道,一种解决方案是将缩小的代码移动到另一个文件,但我想知道是否有另一种解决方案。

4

1 回答 1

0

人们使用两种解决方案:1)在编译后连接已经编译的源代码。我见过人们为此使用编译器的“输出包装器”选项。2)将代码包装在 eval 中(或使用附加脚本标记注入页面):

eval("my precompiled compiled code here");
于 2013-04-13T20:43:38.353 回答