Package lombok.ast

Examples of lombok.ast.While.rawCondition()


   
    @Override public void visitWhileLoop(JCWhileLoop node) {
      While w = new While();
      JCExpression cond = node.getCondition();
      setConversionPositionInfo(w, "()", getPosition(cond));
      set(node, w.rawCondition(toTree(removeParens(cond))).rawStatement(toTree(node.getStatement())));
    }
   
    @Override public void visitReturn(JCReturn node) {
      set(node, new Return().rawValue(toTree(node.getExpression())));
    }
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.