mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-08-03 22:35:43 +02:00
Switch DOM tests to use DOMScanner.
Updated DOMScanner constructor. Added __asm__ macro to GNUScannerConfiguration
This commit is contained in:
parent
cac97aa220
commit
8e1dc14197
6 changed files with 56 additions and 41 deletions
|
@ -15,7 +15,6 @@
|
||||||
package org.eclipse.cdt.core.parser.tests.ast2;
|
package org.eclipse.cdt.core.parser.tests.ast2;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
@ -37,14 +36,12 @@ import org.eclipse.cdt.core.dom.ast.c.ICASTTypeIdInitializerExpression;
|
||||||
import org.eclipse.cdt.core.parser.CodeReader;
|
import org.eclipse.cdt.core.parser.CodeReader;
|
||||||
import org.eclipse.cdt.core.parser.IParserLogService;
|
import org.eclipse.cdt.core.parser.IParserLogService;
|
||||||
import org.eclipse.cdt.core.parser.IScanner;
|
import org.eclipse.cdt.core.parser.IScanner;
|
||||||
import org.eclipse.cdt.core.parser.ISourceElementRequestor;
|
|
||||||
import org.eclipse.cdt.core.parser.NullLogService;
|
import org.eclipse.cdt.core.parser.NullLogService;
|
||||||
import org.eclipse.cdt.core.parser.NullSourceElementRequestor;
|
|
||||||
import org.eclipse.cdt.core.parser.ParserFactory;
|
|
||||||
import org.eclipse.cdt.core.parser.ParserLanguage;
|
import org.eclipse.cdt.core.parser.ParserLanguage;
|
||||||
import org.eclipse.cdt.core.parser.ParserMode;
|
import org.eclipse.cdt.core.parser.ParserMode;
|
||||||
import org.eclipse.cdt.core.parser.ScannerInfo;
|
import org.eclipse.cdt.core.parser.ScannerInfo;
|
||||||
import org.eclipse.cdt.core.parser.tests.parser2.ProblemCollector;
|
import org.eclipse.cdt.core.parser.tests.parser2.ProblemCollector;
|
||||||
|
import org.eclipse.cdt.internal.core.dom.SavedCodeReaderFactory;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.ISourceCodeParser;
|
import org.eclipse.cdt.internal.core.dom.parser.ISourceCodeParser;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.c.ANSICParserExtensionConfiguration;
|
import org.eclipse.cdt.internal.core.dom.parser.c.ANSICParserExtensionConfiguration;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.c.CVisitor;
|
import org.eclipse.cdt.internal.core.dom.parser.c.CVisitor;
|
||||||
|
@ -55,13 +52,16 @@ import org.eclipse.cdt.internal.core.dom.parser.cpp.CPPVisitor;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.cpp.GNUCPPSourceParser;
|
import org.eclipse.cdt.internal.core.dom.parser.cpp.GNUCPPSourceParser;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPParserExtensionConfiguration;
|
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPParserExtensionConfiguration;
|
||||||
import org.eclipse.cdt.internal.core.parser.ParserException;
|
import org.eclipse.cdt.internal.core.parser.ParserException;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.DOMScanner;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.GCCScannerConfiguration;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.GPPScannerConfiguration;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.IScannerConfiguration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author aniefer
|
* @author aniefer
|
||||||
*/
|
*/
|
||||||
public class AST2BaseTest extends TestCase {
|
public class AST2BaseTest extends TestCase {
|
||||||
|
|
||||||
private static final ISourceElementRequestor NULL_REQUESTOR = new NullSourceElementRequestor();
|
|
||||||
private static final IParserLogService NULL_LOG = new NullLogService();
|
private static final IParserLogService NULL_LOG = new NullLogService();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -72,10 +72,15 @@ public class AST2BaseTest extends TestCase {
|
||||||
*/
|
*/
|
||||||
protected IASTTranslationUnit parse( String code, ParserLanguage lang ) throws ParserException {
|
protected IASTTranslationUnit parse( String code, ParserLanguage lang ) throws ParserException {
|
||||||
ProblemCollector collector = new ProblemCollector();
|
ProblemCollector collector = new ProblemCollector();
|
||||||
IScanner scanner = ParserFactory.createScanner(new CodeReader(code
|
CodeReader codeReader = new CodeReader(code
|
||||||
.toCharArray()), new ScannerInfo(), ParserMode.COMPLETE_PARSE,
|
.toCharArray());
|
||||||
lang, NULL_REQUESTOR,
|
ScannerInfo scannerInfo = new ScannerInfo();
|
||||||
NULL_LOG, Collections.EMPTY_LIST);
|
IScannerConfiguration configuration = null;
|
||||||
|
if( lang == ParserLanguage.C )
|
||||||
|
configuration = new GCCScannerConfiguration();
|
||||||
|
else
|
||||||
|
configuration = new GPPScannerConfiguration();
|
||||||
|
IScanner scanner = new DOMScanner( codeReader, scannerInfo, ParserMode.COMPLETE_PARSE, lang, NULL_LOG, configuration, SavedCodeReaderFactory.getInstance() );
|
||||||
ISourceCodeParser parser2 = null;
|
ISourceCodeParser parser2 = null;
|
||||||
if( lang == ParserLanguage.CPP )
|
if( lang == ParserLanguage.CPP )
|
||||||
{
|
{
|
||||||
|
|
|
@ -12,7 +12,6 @@ package org.eclipse.cdt.core.parser.tests.parser2;
|
||||||
|
|
||||||
import java.io.StringWriter;
|
import java.io.StringWriter;
|
||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
import java.util.Collections;
|
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
|
@ -20,11 +19,10 @@ import org.eclipse.cdt.core.dom.ast.IASTTranslationUnit;
|
||||||
import org.eclipse.cdt.core.parser.CodeReader;
|
import org.eclipse.cdt.core.parser.CodeReader;
|
||||||
import org.eclipse.cdt.core.parser.IScanner;
|
import org.eclipse.cdt.core.parser.IScanner;
|
||||||
import org.eclipse.cdt.core.parser.NullLogService;
|
import org.eclipse.cdt.core.parser.NullLogService;
|
||||||
import org.eclipse.cdt.core.parser.NullSourceElementRequestor;
|
|
||||||
import org.eclipse.cdt.core.parser.ParserFactory;
|
|
||||||
import org.eclipse.cdt.core.parser.ParserLanguage;
|
import org.eclipse.cdt.core.parser.ParserLanguage;
|
||||||
import org.eclipse.cdt.core.parser.ParserMode;
|
import org.eclipse.cdt.core.parser.ParserMode;
|
||||||
import org.eclipse.cdt.core.parser.ScannerInfo;
|
import org.eclipse.cdt.core.parser.ScannerInfo;
|
||||||
|
import org.eclipse.cdt.internal.core.dom.SavedCodeReaderFactory;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.ISourceCodeParser;
|
import org.eclipse.cdt.internal.core.dom.parser.ISourceCodeParser;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.c.ANSICParserExtensionConfiguration;
|
import org.eclipse.cdt.internal.core.dom.parser.c.ANSICParserExtensionConfiguration;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.c.GCCParserExtensionConfiguration;
|
import org.eclipse.cdt.internal.core.dom.parser.c.GCCParserExtensionConfiguration;
|
||||||
|
@ -35,6 +33,10 @@ import org.eclipse.cdt.internal.core.dom.parser.cpp.GNUCPPParserExtensionConfigu
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.cpp.GNUCPPSourceParser;
|
import org.eclipse.cdt.internal.core.dom.parser.cpp.GNUCPPSourceParser;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPParserExtensionConfiguration;
|
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPParserExtensionConfiguration;
|
||||||
import org.eclipse.cdt.internal.core.parser.ParserException;
|
import org.eclipse.cdt.internal.core.parser.ParserException;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.DOMScanner;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.GCCScannerConfiguration;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.GPPScannerConfiguration;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.IScannerConfiguration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author jcamelon
|
* @author jcamelon
|
||||||
|
@ -42,7 +44,7 @@ import org.eclipse.cdt.internal.core.parser.ParserException;
|
||||||
public class CompleteParser2Tests extends TestCase {
|
public class CompleteParser2Tests extends TestCase {
|
||||||
|
|
||||||
private static final NullLogService NULL_LOG = new NullLogService();
|
private static final NullLogService NULL_LOG = new NullLogService();
|
||||||
private static final NullSourceElementRequestor NULL_REQUESTOR = new NullSourceElementRequestor();
|
|
||||||
|
|
||||||
protected IASTTranslationUnit parse(String code, boolean expectedToPass,
|
protected IASTTranslationUnit parse(String code, boolean expectedToPass,
|
||||||
ParserLanguage lang) throws Exception {
|
ParserLanguage lang) throws Exception {
|
||||||
|
@ -71,10 +73,16 @@ public class CompleteParser2Tests extends TestCase {
|
||||||
ParserLanguage lang, boolean gcc) throws Exception {
|
ParserLanguage lang, boolean gcc) throws Exception {
|
||||||
|
|
||||||
collector = new ProblemCollector();
|
collector = new ProblemCollector();
|
||||||
IScanner scanner = ParserFactory.createScanner(new CodeReader(code
|
CodeReader codeReader = new CodeReader(code
|
||||||
.toCharArray()), new ScannerInfo(), ParserMode.COMPLETE_PARSE,
|
.toCharArray());
|
||||||
lang, NULL_REQUESTOR, NULL_LOG, Collections.EMPTY_LIST);
|
ScannerInfo scannerInfo = new ScannerInfo();
|
||||||
|
IScannerConfiguration configuration = null;
|
||||||
|
if( lang == ParserLanguage.C )
|
||||||
|
configuration = new GCCScannerConfiguration();
|
||||||
|
else
|
||||||
|
configuration = new GPPScannerConfiguration();
|
||||||
ISourceCodeParser parser2 = null;
|
ISourceCodeParser parser2 = null;
|
||||||
|
IScanner scanner = new DOMScanner( codeReader, scannerInfo, ParserMode.COMPLETE_PARSE, lang, NULL_LOG, configuration, SavedCodeReaderFactory.getInstance() );
|
||||||
if (lang == ParserLanguage.CPP) {
|
if (lang == ParserLanguage.CPP) {
|
||||||
ICPPParserExtensionConfiguration config = null;
|
ICPPParserExtensionConfiguration config = null;
|
||||||
if (gcc)
|
if (gcc)
|
||||||
|
|
|
@ -12,18 +12,17 @@ package org.eclipse.cdt.core.parser.tests.parser2;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.StringWriter;
|
import java.io.StringWriter;
|
||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
import java.util.Collections;
|
|
||||||
|
|
||||||
import junit.framework.TestCase;
|
import junit.framework.TestCase;
|
||||||
|
|
||||||
import org.eclipse.cdt.core.parser.CodeReader;
|
import org.eclipse.cdt.core.parser.CodeReader;
|
||||||
import org.eclipse.cdt.core.parser.IScanner;
|
import org.eclipse.cdt.core.parser.IScanner;
|
||||||
|
import org.eclipse.cdt.core.parser.IScannerInfo;
|
||||||
import org.eclipse.cdt.core.parser.NullLogService;
|
import org.eclipse.cdt.core.parser.NullLogService;
|
||||||
import org.eclipse.cdt.core.parser.NullSourceElementRequestor;
|
|
||||||
import org.eclipse.cdt.core.parser.ParserFactory;
|
|
||||||
import org.eclipse.cdt.core.parser.ParserLanguage;
|
import org.eclipse.cdt.core.parser.ParserLanguage;
|
||||||
import org.eclipse.cdt.core.parser.ParserMode;
|
import org.eclipse.cdt.core.parser.ParserMode;
|
||||||
import org.eclipse.cdt.core.parser.ScannerInfo;
|
import org.eclipse.cdt.core.parser.ScannerInfo;
|
||||||
|
import org.eclipse.cdt.internal.core.dom.SavedCodeReaderFactory;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.ISourceCodeParser;
|
import org.eclipse.cdt.internal.core.dom.parser.ISourceCodeParser;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.c.ANSICParserExtensionConfiguration;
|
import org.eclipse.cdt.internal.core.dom.parser.c.ANSICParserExtensionConfiguration;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.c.GCCParserExtensionConfiguration;
|
import org.eclipse.cdt.internal.core.dom.parser.c.GCCParserExtensionConfiguration;
|
||||||
|
@ -34,6 +33,10 @@ import org.eclipse.cdt.internal.core.dom.parser.cpp.GNUCPPParserExtensionConfigu
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.cpp.GNUCPPSourceParser;
|
import org.eclipse.cdt.internal.core.dom.parser.cpp.GNUCPPSourceParser;
|
||||||
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPParserExtensionConfiguration;
|
import org.eclipse.cdt.internal.core.dom.parser.cpp.ICPPParserExtensionConfiguration;
|
||||||
import org.eclipse.cdt.internal.core.parser.ParserException;
|
import org.eclipse.cdt.internal.core.parser.ParserException;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.DOMScanner;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.GCCScannerConfiguration;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.GPPScannerConfiguration;
|
||||||
|
import org.eclipse.cdt.internal.core.parser.scanner2.IScannerConfiguration;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author jcamelon
|
* @author jcamelon
|
||||||
|
@ -41,7 +44,6 @@ import org.eclipse.cdt.internal.core.parser.ParserException;
|
||||||
public class QuickParser2Tests extends TestCase {
|
public class QuickParser2Tests extends TestCase {
|
||||||
|
|
||||||
private static final NullLogService NULL_LOG = new NullLogService();
|
private static final NullLogService NULL_LOG = new NullLogService();
|
||||||
private static final NullSourceElementRequestor NULL_REQUESTOR = new NullSourceElementRequestor();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
|
@ -1355,9 +1357,14 @@ public class QuickParser2Tests extends TestCase {
|
||||||
ParserLanguage lang, boolean gcc) throws Exception {
|
ParserLanguage lang, boolean gcc) throws Exception {
|
||||||
|
|
||||||
ProblemCollector collector = new ProblemCollector();
|
ProblemCollector collector = new ProblemCollector();
|
||||||
IScanner scanner = ParserFactory.createScanner(new CodeReader(code
|
CodeReader codeReader = new CodeReader( code.toCharArray() );
|
||||||
.toCharArray()), new ScannerInfo(), ParserMode.QUICK_PARSE,
|
IScannerInfo scannerInfo = new ScannerInfo();
|
||||||
lang, NULL_REQUESTOR, NULL_LOG, Collections.EMPTY_LIST);
|
IScannerConfiguration configuration = null;
|
||||||
|
if( lang == ParserLanguage.C )
|
||||||
|
configuration = new GCCScannerConfiguration();
|
||||||
|
else
|
||||||
|
configuration = new GPPScannerConfiguration();
|
||||||
|
IScanner scanner = new DOMScanner( codeReader, scannerInfo, ParserMode.COMPLETE_PARSE, lang, NULL_LOG, configuration, SavedCodeReaderFactory.getInstance() );
|
||||||
ISourceCodeParser parser2 = null;
|
ISourceCodeParser parser2 = null;
|
||||||
if (lang == ParserLanguage.CPP) {
|
if (lang == ParserLanguage.CPP) {
|
||||||
ICPPParserExtensionConfiguration config = null;
|
ICPPParserExtensionConfiguration config = null;
|
||||||
|
|
|
@ -10,8 +10,8 @@
|
||||||
**********************************************************************/
|
**********************************************************************/
|
||||||
package org.eclipse.cdt.internal.core.parser.scanner2;
|
package org.eclipse.cdt.internal.core.parser.scanner2;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
|
import org.eclipse.cdt.core.dom.ICodeReaderFactory;
|
||||||
import org.eclipse.cdt.core.parser.CodeReader;
|
import org.eclipse.cdt.core.parser.CodeReader;
|
||||||
import org.eclipse.cdt.core.parser.IParserLogService;
|
import org.eclipse.cdt.core.parser.IParserLogService;
|
||||||
import org.eclipse.cdt.core.parser.IScannerInfo;
|
import org.eclipse.cdt.core.parser.IScannerInfo;
|
||||||
|
@ -24,18 +24,22 @@ import org.eclipse.cdt.core.parser.ast.IASTFactory;
|
||||||
*/
|
*/
|
||||||
public class DOMScanner extends BaseScanner {
|
public class DOMScanner extends BaseScanner {
|
||||||
|
|
||||||
|
private final ICodeReaderFactory codeReaderFactory;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param reader
|
* @param reader
|
||||||
* @param info
|
* @param info
|
||||||
* @param parserMode
|
* @param parserMode
|
||||||
* @param language
|
* @param language
|
||||||
* @param log
|
* @param log
|
||||||
* @param workingCopies
|
* @param readerFactory TODO
|
||||||
* @param requestor
|
* @param requestor
|
||||||
*/
|
*/
|
||||||
public DOMScanner(CodeReader reader, IScannerInfo info, ParserMode parserMode, ParserLanguage language, IParserLogService log, List workingCopies, IScannerConfiguration configuration) {
|
public DOMScanner(CodeReader reader, IScannerInfo info, ParserMode parserMode, ParserLanguage language, IParserLogService log, IScannerConfiguration configuration, ICodeReaderFactory readerFactory) {
|
||||||
super(reader, info, parserMode, language, log, configuration);
|
super(reader, info, parserMode, language, log, configuration);
|
||||||
this.expressionEvaluator = new ExpressionEvaluator(null, spf);
|
this.expressionEvaluator = new ExpressionEvaluator(null, spf);
|
||||||
|
this.codeReaderFactory = readerFactory;
|
||||||
postConstructorSetup(reader, info);
|
postConstructorSetup(reader, info);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -78,8 +82,7 @@ public class DOMScanner extends BaseScanner {
|
||||||
* @see org.eclipse.cdt.internal.core.parser.scanner2.BaseScanner#createReaderDuple(java.lang.String)
|
* @see org.eclipse.cdt.internal.core.parser.scanner2.BaseScanner#createReaderDuple(java.lang.String)
|
||||||
*/
|
*/
|
||||||
protected CodeReader createReaderDuple(String finalPath) {
|
protected CodeReader createReaderDuple(String finalPath) {
|
||||||
// TODO Auto-generated method stub
|
return codeReaderFactory.createCodeReaderForInclusion(finalPath);
|
||||||
return null;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -30,6 +30,10 @@ public abstract class GNUScannerConfiguration implements IScannerConfiguration {
|
||||||
public char[] supportAdditionalNumericLiteralSuffixes() {
|
public char[] supportAdditionalNumericLiteralSuffixes() {
|
||||||
return "ij".toCharArray(); //$NON-NLS-1$
|
return "ij".toCharArray(); //$NON-NLS-1$
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static final ObjectStyleMacro __asm__ = new ObjectStyleMacro(
|
||||||
|
"__asm__".toCharArray(), "asm".toCharArray()); //$NON-NLS-1$ //$NON-NLS-2$
|
||||||
|
|
||||||
|
|
||||||
private static final ObjectStyleMacro __inline__ = new ObjectStyleMacro(
|
private static final ObjectStyleMacro __inline__ = new ObjectStyleMacro(
|
||||||
"__inline__".toCharArray(), "inline".toCharArray()); //$NON-NLS-1$ //$NON-NLS-2$
|
"__inline__".toCharArray(), "inline".toCharArray()); //$NON-NLS-1$ //$NON-NLS-2$
|
||||||
|
@ -108,6 +112,7 @@ public abstract class GNUScannerConfiguration implements IScannerConfiguration {
|
||||||
realDefinitions.put(__real__.name, __real__);
|
realDefinitions.put(__real__.name, __real__);
|
||||||
realDefinitions.put(__builtin_va_arg.name, __builtin_va_arg);
|
realDefinitions.put(__builtin_va_arg.name, __builtin_va_arg);
|
||||||
realDefinitions.put(__builtin_constant_p.name, __builtin_constant_p);
|
realDefinitions.put(__builtin_constant_p.name, __builtin_constant_p);
|
||||||
|
realDefinitions.put( __asm__.name, __asm__ );
|
||||||
return realDefinitions;
|
return realDefinitions;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,6 @@ import org.eclipse.cdt.core.parser.IGCCToken;
|
||||||
import org.eclipse.cdt.core.parser.IToken;
|
import org.eclipse.cdt.core.parser.IToken;
|
||||||
import org.eclipse.cdt.core.parser.Keywords;
|
import org.eclipse.cdt.core.parser.Keywords;
|
||||||
import org.eclipse.cdt.core.parser.util.CharArrayIntMap;
|
import org.eclipse.cdt.core.parser.util.CharArrayIntMap;
|
||||||
import org.eclipse.cdt.core.parser.util.CharArrayObjectMap;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author jcamelon
|
* @author jcamelon
|
||||||
|
@ -43,16 +42,4 @@ public class GPPScannerConfiguration extends GNUScannerConfiguration implements
|
||||||
return additionalCPPKeywords;
|
return additionalCPPKeywords;
|
||||||
}
|
}
|
||||||
|
|
||||||
private static final ObjectStyleMacro __asm__ = new ObjectStyleMacro(
|
|
||||||
"__asm__".toCharArray(), "asm".toCharArray()); //$NON-NLS-1$ //$NON-NLS-2$
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see org.eclipse.cdt.internal.core.parser.scanner2.IScannerConfiguration#getAdditionalMacros()
|
|
||||||
*/
|
|
||||||
public CharArrayObjectMap getAdditionalMacros() {
|
|
||||||
CharArrayObjectMap result = super.getAdditionalMacros();
|
|
||||||
result.put( __asm__.name, __asm__ );
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue