Package com.google.template.soy.sharedpasses

Examples of com.google.template.soy.sharedpasses.FindIjParamsVisitor$TemplateVisitInfo


        transitiveParamMap.put(param.key, new SoyDocParam(param.key, param.isRequired, null));
      }
    }

    // Get info on injected params.
    IjParamsInfo ijParamsInfo = (new FindIjParamsVisitor(templateRegistry)).exec(node);

    String upperUnderscoreName =
        convertToUpperUnderscore(node.getPartialTemplateName().substring(1));
    String templateInfoClassName =
        CaseFormat.UPPER_UNDERSCORE.to(CaseFormat.UPPER_CAMEL, upperUnderscoreName) +
View Full Code Here


      cachedTemplateRegistries = null;
    }
    SoyFileSetNode soyTreeForNoCaching = soyTree.clone();
    templateRegistryForNoCaching = buildTemplateRegistry(soyTreeForNoCaching);
    templateToIjParamsInfoMap =
        (new FindIjParamsVisitor(templateRegistryForNoCaching)).execForAllTemplates(
            soyTreeForNoCaching);
  }
View Full Code Here

TOP

Related Classes of com.google.template.soy.sharedpasses.FindIjParamsVisitor$TemplateVisitInfo

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.