|
Lines 26-31
Link Here
|
| 26 |
|
26 |
|
| 27 |
import org.eclipse.cdt.core.CCorePlugin; |
27 |
import org.eclipse.cdt.core.CCorePlugin; |
| 28 |
import org.eclipse.cdt.core.dom.ICodeReaderFactory; |
28 |
import org.eclipse.cdt.core.dom.ICodeReaderFactory; |
|
|
29 |
import org.eclipse.cdt.core.dom.ICodeReaderFactoryCallback; |
| 29 |
import org.eclipse.cdt.core.index.IIndex; |
30 |
import org.eclipse.cdt.core.index.IIndex; |
| 30 |
import org.eclipse.cdt.core.index.IIndexFile; |
31 |
import org.eclipse.cdt.core.index.IIndexFile; |
| 31 |
import org.eclipse.cdt.core.index.IIndexFileLocation; |
32 |
import org.eclipse.cdt.core.index.IIndexFileLocation; |
|
Lines 35-41
Link Here
|
| 35 |
import org.eclipse.cdt.core.parser.CodeReader; |
36 |
import org.eclipse.cdt.core.parser.CodeReader; |
| 36 |
import org.eclipse.cdt.core.parser.ICodeReaderCache; |
37 |
import org.eclipse.cdt.core.parser.ICodeReaderCache; |
| 37 |
import org.eclipse.cdt.core.parser.IMacro; |
38 |
import org.eclipse.cdt.core.parser.IMacro; |
| 38 |
import org.eclipse.cdt.core.parser.IScanner; |
|
|
| 39 |
import org.eclipse.cdt.core.parser.ParserUtil; |
39 |
import org.eclipse.cdt.core.parser.ParserUtil; |
| 40 |
import org.eclipse.cdt.internal.core.parser.scanner2.ObjectStyleMacro; |
40 |
import org.eclipse.cdt.internal.core.parser.scanner2.ObjectStyleMacro; |
| 41 |
import org.eclipse.cdt.internal.core.pdom.dom.PDOMMacro; |
41 |
import org.eclipse.cdt.internal.core.pdom.dom.PDOMMacro; |
|
Lines 103-109
Link Here
|
| 103 |
return ParserUtil.createReader(path, null); |
103 |
return ParserUtil.createReader(path, null); |
| 104 |
} |
104 |
} |
| 105 |
|
105 |
|
| 106 |
public CodeReader createCodeReaderForInclusion(IScanner scanner, String path) { |
106 |
public CodeReader createCodeReaderForInclusion(ICodeReaderFactoryCallback scanner, String path) { |
| 107 |
// if the file is in the index, we skip it |
107 |
// if the file is in the index, we skip it |
| 108 |
File location= new File(path); |
108 |
File location= new File(path); |
| 109 |
String canonicalPath= path; |
109 |
String canonicalPath= path; |