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

Examples of org.eclipse.cdt.core.dom.ast.cpp.ICPPASTFunctionWithTryBlock


    scribe.newLine();

    funcDef.getBody().accept(visitor);

    if (funcDef instanceof ICPPASTFunctionWithTryBlock) {
      final ICPPASTFunctionWithTryBlock tryblock = (ICPPASTFunctionWithTryBlock) funcDef;
      final ICPPASTCatchHandler[] catches = tryblock.getCatchHandlers();
      for (final ICPPASTCatchHandler handler : catches) {
        handler.accept(visitor);
      }
    }
  }
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.core.dom.ast.cpp.ICPPASTFunctionWithTryBlock

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.