Package com.google.template.soy.sharedpasses

Examples of com.google.template.soy.sharedpasses.ShouldEnsureDataIsDefinedVisitor$ExistsRegDataRefInExprVisitor


    boolean isCodeStyleStringbuilder = jsSrcOptions.getCodeStyle() == CodeStyle.STRINGBUILDER;

    localVarTranslations.push(Maps.<String, JsExpr>newHashMap());

    // Generate statement to ensure data is defined, if necessary.
    if ((new ShouldEnsureDataIsDefinedVisitor()).exec(node)) {
      jsCodeBuilder.appendLine("opt_data = opt_data || {};");
    }

    JsExpr resultJsExpr;
    if (!isCodeStyleStringbuilder && isComputableAsJsExprsVisitor.exec(node)) {
View Full Code Here

TOP

Related Classes of com.google.template.soy.sharedpasses.ShouldEnsureDataIsDefinedVisitor$ExistsRegDataRefInExprVisitor

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.