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

Examples of org.eclipse.cdt.core.dom.ast.gnu.IGNUASTCompoundStatementExpression


  @Override
  public int visit(final IASTExpression expression) {
    writeLeadingComments(expression);
    if (!macroHandler.checkisMacroExpansionNode(expression)) {
      if (expression instanceof IGNUASTCompoundStatementExpression) {
        final IGNUASTCompoundStatementExpression gnuCompStmtExp = (IGNUASTCompoundStatementExpression) expression;
        gnuCompStmtExp.getCompoundStatement().accept(this);
      } else {
        expWriter.writeExpression(expression);
      }
    }
    return ASTVisitor.PROCESS_SKIP;
View Full Code Here

TOP

Related Classes of org.eclipse.cdt.core.dom.ast.gnu.IGNUASTCompoundStatementExpression

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.