Examples of SoyDocParam


Examples of com.google.template.soy.soytree.TemplateNode.SoyDocParam

    }
    // Indirect params.
    IndirectParamsInfo indirectParamsInfo =
        (new FindIndirectParamsVisitor(templateRegistry)).exec(node);
    for (SoyDocParam param : indirectParamsInfo.indirectParams.values()) {
      SoyDocParam existingParam = transitiveParamMap.get(param.key);
      if (existingParam == null) {
        // Note: We don't list the SoyDoc description for indirect params.
        transitiveParamMap.put(param.key, new SoyDocParam(param.key, param.isRequired, null));
      }
    }

    // Get info on injected params.
    IjParamsInfo ijParamsInfo = (new FindIjParamsVisitor(templateRegistry)).exec(node);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.