5
java -jar SoyToJsSrcCompiler.jar --shouldGenerateJsdoc --outputPathFormat 
           simple.js --srcs simple.soy

SoyToJsSrcCompiler 生成一个 js 文件,如下所示:

if (typeof templates == 'undefined') { var templates = {}; }
if (typeof templates.simple == 'undefined') { templates.simple = {}; }

/**
 * @param {Object.<string, *>=} opt_data
 * @param {(null|undefined)=} opt_ignored
 * @return {string}
 * @notypecheck
 */

 templates.simple.tinyButton = function(opt_data, opt_ignored) {
     .....
 };

我正在使用闭包编译器--warning_level=VERBOSE--compilation_level ADVANCED_OPTIMIZATIONS

我收到了这个警告:

simple.js:1: WARNING - Variable referenced before declaration: templates
if (typeof templates == 'undefined') { var templates = {}; }

如何清除此警告?

4

2 回答 2

6

一种解决方法是在 externs 文件中声明变量:

/** @suppress {duplicate} */
var template;

但是大豆编译器应该是固定的。我希望人们不会看到这一点,因为您通常将它与 Closure Library 一起使用,并且在这种模式下,Soy 编译器应该生成:

goog.provide('template.simple')
于 2014-01-11T01:24:31.357 回答
1

如果你在 Soy 中使用 Closure 编译器,你应该通过--shouldProvideRequireJsFunctions--shouldProvideRequireJsFunctions。否则,它假定您不会使用编译器并生成浏览器可以理解的代码,但在其他方面有点不确定。

(来源:我帮助维护 Soy 编译器。我们通常不会在没有通过其中任何一个标志的情况下测试它们的编译器。将这些标志中的至少一个设为强制性可能是有意义的,因为没有它们它真的无法正常工作。)

于 2014-01-11T20:29:32.383 回答