Package com.google.template.soy.sharedpasses

Examples of com.google.template.soy.sharedpasses.MarkLocalVarDataRefsVisitor$MarkLocalVarDataRefsInExprVisitor


    Preconditions.checkArgument(
        node instanceof SoyFileSetNode || node instanceof SoyFileNode ||
        node instanceof TemplateNode);

    (new MarkLocalVarDataRefsVisitor()).exec(node);

    visit(node);

    (new UnmarkLocalVarDataRefsVisitor()).exec(node);
    return null;
View Full Code Here


   * @return The newly built template registry.
   */
  private TemplateRegistry buildTemplateRegistry(SoyFileSetNode soyTree) {

    (new MarkParentNodesNeedingEnvFramesVisitor()).exec(soyTree);
    (new MarkLocalVarDataRefsVisitor()).exec(soyTree);
    return new TemplateRegistry(soyTree);
  }
View Full Code Here

TOP

Related Classes of com.google.template.soy.sharedpasses.MarkLocalVarDataRefsVisitor$MarkLocalVarDataRefsInExprVisitor

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.