blob: d0661c526fe78593ee7242c18e1a54254b1b1570 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2007, 2012 IBM Corporation and others.
*
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Rational Software - Initial API and implementation
* Ed Swartz (Nokia)
* Markus Schorn (Wind River Systems)
*******************************************************************************/
package org.eclipse.cdt.core.dom.parser.c;
import org.eclipse.cdt.core.dom.parser.IBuiltinBindingsProvider;
import org.eclipse.cdt.core.parser.ParserLanguage;
import org.eclipse.cdt.internal.core.dom.parser.GCCBuiltinSymbolProvider;
/**
* Configures the parser for c-source code as accepted by gcc.
*/
public class GCCParserExtensionConfiguration extends AbstractCParserExtensionConfiguration {
private static GCCParserExtensionConfiguration sInstance = new GCCParserExtensionConfiguration();
/**
* @since 5.1
*/
public static GCCParserExtensionConfiguration getInstance() {
return sInstance;
}
@Override
public boolean supportStatementsInExpressions() {
return true;
}
@Override
public boolean supportGCCStyleDesignators() {
return true;
}
@Override
public boolean supportTypeofUnaryExpressions() {
return true;
}
@Override
public boolean supportAlignOfUnaryExpression() {
return true;
}
@Override
public boolean supportKnRC() {
return true;
}
@Override
public boolean supportAttributeSpecifiers() {
return true;
}
@Override
public boolean supportDeclspecSpecifiers() {
return true;
}
@Override
public IBuiltinBindingsProvider getBuiltinBindingsProvider() {
return new GCCBuiltinSymbolProvider(ParserLanguage.C, true);
}
}