Package lombok.ast

Examples of lombok.ast.ClassLiteral.rawTypeReference()


      }
     
      if ("class".equals(name)) {
        ClassLiteral c = new ClassLiteral();
        setConversionPositionInfo(c, "class", getPosition(node));
        set(node, c.rawTypeReference(toTree(node.getExpression(), FlagKey.TYPE_REFERENCE)));
        return;
      }
     
      set(node, new Select().astIdentifier(id).rawOperand(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.