Examples of IGNUASTCompoundStatementExpression


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
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.