Package org.eclipse.cdt.core.dom.ast

Examples of org.eclipse.cdt.core.dom.ast.IASTReturnStatement


      //Ignore compound statement, visitor will visit individual statements
      } else if(stmt instanceof IASTCompoundStatement){
       
      } else if(stmt instanceof IASTReturnStatement){
        //TODO: Construct fake statement with read dependency
        IASTReturnStatement ret = (IASTReturnStatement)stmt;
        IASTExpression exp = ret.getReturnValue();
       
        if(exp != null){
          //System.err.println("FadaVisitor return expression not handled: " + stmt.getRawSignature());
          ExprVisitor visitor = new ExprVisitor();
          exp.accept(visitor);
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.core.dom.ast.IASTReturnStatement

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.