Package com.google.clearsilver.jsilver.syntax.node

Examples of com.google.clearsilver.jsilver.syntax.node.AOptimizedMultipleCommand


  public void caseAMultipleCommand(AMultipleCommand originalNode) {
    // Recurse through child nodes first. Because the optimised node doesn't
    // handle replacement, go leaves-first.
    super.caseAMultipleCommand(originalNode);
    // Replace this node with the optimized version.
    originalNode.replaceBy(new AOptimizedMultipleCommand(originalNode));
  }
View Full Code Here

TOP

Related Classes of com.google.clearsilver.jsilver.syntax.node.AOptimizedMultipleCommand

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.