Package com.google.template.soy.soytree.SoyNode

Examples of com.google.template.soy.soytree.SoyNode.LocalVarBlockNode


    }

    if (node instanceof ParentSoyNode<?>) {

      if (node instanceof LocalVarBlockNode) {
        LocalVarBlockNode nodeAsLocalVarBlock = (LocalVarBlockNode) node;
        Set<String> newLocalVarFrame = Sets.newHashSet();
        newLocalVarFrame.add(nodeAsLocalVarBlock.getVarName());
        localVarFrames.push(newLocalVarFrame);
        visitChildren(nodeAsLocalVarBlock);
        localVarFrames.pop();

      } else if (node instanceof BlockNode) {
View Full Code Here

TOP

Related Classes of com.google.template.soy.soytree.SoyNode.LocalVarBlockNode

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.