mirror of
https://github.com/eclipse-cdt/cdt
synced 2025-04-29 19:45:01 +02:00
Merge remote-tracking branch 'cdt/master' into sd90
This commit is contained in:
commit
679bcb0a1a
32 changed files with 350 additions and 517 deletions
|
@ -417,8 +417,7 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
IPath path = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path, 0);
|
||||
CIncludePathEntry expected = new CIncludePathEntry("/path0", 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
|
@ -469,46 +468,45 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check populated entries
|
||||
IPath path0 = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file1, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file2, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file3, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file4, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file5, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file6, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file7, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file8, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file9, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file10, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -549,40 +547,18 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
IPath path = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path, 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/path1").setDevice(project.getLocation().getDevice());
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path, 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(1);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/path with spaces").setDevice(project.getLocation().getDevice());
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path, 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(2);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/path with spaces2").setDevice(project.getLocation().getDevice());
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path, 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(3);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/path with spaces3").setDevice(project.getLocation().getDevice());
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path, 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(4);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
CIncludePathEntry expected = new CIncludePathEntry("/path0", 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
|
||||
assertEquals(new CIncludePathEntry("/path1", 0), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry("/path with spaces", 0), entries.get(2));
|
||||
assertEquals(new CIncludePathEntry("/path with spaces2", 0), entries.get(3));
|
||||
assertEquals(new CIncludePathEntry("/path with spaces3", 0), entries.get(4));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -616,18 +592,9 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
IPath path = new Path("/Framework").setDevice(project.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(path, ICSettingEntry.FRAMEWORKS_MAC), entries.get(0));
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/framework/system").setDevice(project.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(path, ICSettingEntry.FRAMEWORKS_MAC), entries.get(1));
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/Framework with spaces").setDevice(project.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(path, ICSettingEntry.FRAMEWORKS_MAC), entries.get(2));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry("/Framework", ICSettingEntry.FRAMEWORKS_MAC), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/framework/system", ICSettingEntry.FRAMEWORKS_MAC), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry("/Framework with spaces", ICSettingEntry.FRAMEWORKS_MAC), entries.get(2));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -663,50 +630,21 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
CMacroEntry expected = new CMacroEntry("MACRO0", "", 0);
|
||||
CMacroEntry entry = (CMacroEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
CMacroEntry expected = new CMacroEntry("MACRO1", "value", 0);
|
||||
CMacroEntry entry = (CMacroEntry)entries.get(1);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
CMacroEntry expected = new CMacroEntry("MACRO2", "value with spaces", 0);
|
||||
CMacroEntry entry = (CMacroEntry)entries.get(2);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
CMacroEntry expected = new CMacroEntry("MACRO3", "value with spaces", 0);
|
||||
CMacroEntry entry = (CMacroEntry)entries.get(3);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
CMacroEntry expected = new CMacroEntry("MACRO4", "\"quoted value\"", 0);
|
||||
CMacroEntry entry = (CMacroEntry)entries.get(4);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
CMacroEntry expected = new CMacroEntry("MACRO5", "\"quoted value\"", 0);
|
||||
CMacroEntry entry = (CMacroEntry)entries.get(5);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
CMacroEntry expected = new CMacroEntry("MACRO6", "\"escape-quoted value\"", 0);
|
||||
CMacroEntry entry = (CMacroEntry)entries.get(6);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
CMacroEntry expected = new CMacroEntry("MACRO7", "'single-quoted value'", 0);
|
||||
CMacroEntry entry = (CMacroEntry)entries.get(7);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
CMacroEntry expected = new CMacroEntry("MACRO0", "", 0);
|
||||
CMacroEntry entry = (CMacroEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
|
||||
assertEquals(new CMacroEntry("MACRO1", "value", 0), entries.get(1));
|
||||
assertEquals(new CMacroEntry("MACRO2", "value with spaces", 0), entries.get(2));
|
||||
assertEquals(new CMacroEntry("MACRO3", "value with spaces", 0), entries.get(3));
|
||||
assertEquals(new CMacroEntry("MACRO4", "\"quoted value\"", 0), entries.get(4));
|
||||
assertEquals(new CMacroEntry("MACRO5", "\"quoted value\"", 0), entries.get(5));
|
||||
assertEquals(new CMacroEntry("MACRO6", "\"escape-quoted value\"", 0), entries.get(6));
|
||||
assertEquals(new CMacroEntry("MACRO7", "'single-quoted value'", 0), entries.get(7));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -735,9 +673,7 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CMacroEntry("MACRO", null, ICSettingEntry.UNDEFINED), entries.get(0));
|
||||
}
|
||||
assertEquals(new CMacroEntry("MACRO", null, ICSettingEntry.UNDEFINED), entries.get(0));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -770,26 +706,18 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
IPath incFile = new Path("/include.file1").setDevice(project.getLocation().getDevice());
|
||||
CIncludeFileEntry expected = new CIncludeFileEntry(incFile, 0);
|
||||
CIncludeFileEntry entry = (CIncludeFileEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
CIncludeFileEntry expected = new CIncludeFileEntry("/include.file1", 0);
|
||||
CIncludeFileEntry entry = (CIncludeFileEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
|
||||
{
|
||||
IPath incFile = new Path("/include.file with spaces").setDevice(project.getLocation().getDevice());
|
||||
assertEquals(new CIncludeFileEntry(incFile, 0), entries.get(1));
|
||||
}
|
||||
{
|
||||
assertEquals(new CIncludeFileEntry(project.getLocation().removeLastSegments(2).append("include.file2"), 0), entries.get(2));
|
||||
assertEquals(new CIncludeFileEntry(project.getFullPath().append("include.file3"), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(3));
|
||||
assertEquals(new CIncludeFileEntry(project.getLocation().removeLastSegments(2).append("include-file-with-dashes"), 0), entries.get(4));
|
||||
}
|
||||
assertEquals(new CIncludeFileEntry("/include.file with spaces", 0), entries.get(1));
|
||||
assertEquals(new CIncludeFileEntry(project.getLocation().removeLastSegments(2).append("include.file2"), 0), entries.get(2));
|
||||
assertEquals(new CIncludeFileEntry(project.getFullPath().append("include.file3"), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(3));
|
||||
assertEquals(new CIncludeFileEntry(project.getLocation().removeLastSegments(2).append("include-file-with-dashes"), 0), entries.get(4));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -820,22 +748,16 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
IPath path = new Path("/macro.file").setDevice(project.getLocation().getDevice());
|
||||
CMacroFileEntry expected = new CMacroFileEntry(path, 0);
|
||||
CMacroFileEntry entry = (CMacroFileEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/macro.file with spaces").setDevice(project.getLocation().getDevice());
|
||||
CMacroFileEntry expected = new CMacroFileEntry(path, 0);
|
||||
CMacroFileEntry entry = (CMacroFileEntry)entries.get(1);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
CMacroFileEntry expected = new CMacroFileEntry("/macro.file", 0);
|
||||
CMacroFileEntry entry = (CMacroFileEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
|
||||
assertEquals(new CMacroFileEntry("/macro.file with spaces", 0), entries.get(1));
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -865,22 +787,15 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
IPath path = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
CLibraryPathEntry expected = new CLibraryPathEntry(path, 0);
|
||||
CLibraryPathEntry entry = (CLibraryPathEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/path with spaces").setDevice(project.getLocation().getDevice());
|
||||
CLibraryPathEntry expected = new CLibraryPathEntry(path, 0);
|
||||
CLibraryPathEntry entry = (CLibraryPathEntry)entries.get(1);
|
||||
assertEquals(expected, entry);
|
||||
}
|
||||
CLibraryPathEntry expected = new CLibraryPathEntry("/path0", 0);
|
||||
CLibraryPathEntry entry = (CLibraryPathEntry)entries.get(0);
|
||||
assertEquals(expected.getName(), entry.getName());
|
||||
assertEquals(expected.getValue(), entry.getValue());
|
||||
assertEquals(expected.getKind(), entry.getKind());
|
||||
assertEquals(expected.getFlags(), entry.getFlags());
|
||||
assertEquals(expected, entry);
|
||||
|
||||
assertEquals(new CLibraryPathEntry("/path with spaces", 0), entries.get(1));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -953,20 +868,12 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
String device = project.getLocation().getDevice();
|
||||
// + " -I/path0 "
|
||||
assertEquals(new CIncludePathEntry(new Path("/path0").setDevice(device), 0), entries.get(0));
|
||||
// + " -I /path1 "
|
||||
assertEquals(new CIncludePathEntry(new Path("/path1").setDevice(device), 0), entries.get(1));
|
||||
// + " -I\"/path with spaces\""
|
||||
assertEquals(new CIncludePathEntry(new Path("/path with spaces").setDevice(device), 0), entries.get(2));
|
||||
// + " -DMACRO1=value"
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/path1", 0), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry("/path with spaces", 0), entries.get(2));
|
||||
assertEquals(new CMacroEntry("MACRO1", "value", 0), entries.get(3));
|
||||
// + " -DMACRO2=\"value with spaces\""
|
||||
assertEquals(new CMacroEntry("MACRO2", "value with spaces", 0), entries.get(4));
|
||||
// + " -L/usr/lib"
|
||||
assertEquals(new CLibraryPathEntry(new Path("/usr/lib").setDevice(device), 0), entries.get(5));
|
||||
// + " -ldomain"
|
||||
assertEquals(new CLibraryPathEntry("/usr/lib", 0), entries.get(5));
|
||||
assertEquals(new CLibraryFileEntry("libdomain.a", 0), entries.get(6));
|
||||
assertEquals(7, entries.size());
|
||||
}
|
||||
|
@ -1019,12 +926,9 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check entries
|
||||
IPath path0 = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(project.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
}
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(project.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1053,12 +957,8 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check entries
|
||||
IPath path0 = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(null, file, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(file.getParent().getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), parser.getSettingEntries(null, file, languageId).get(0));
|
||||
assertEquals(new CIncludePathEntry(file.getParent().getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), parser.getSettingEntries(null, file, languageId).get(1));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1090,31 +990,14 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check populated entries
|
||||
IPath path0 = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
{
|
||||
// in single quotes
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file1, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path0, 0);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
{
|
||||
// in double quotes
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file2, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path0, 0);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
{
|
||||
// Unix EOL
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file3, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path0, 0);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
{
|
||||
// Windows EOL
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file4, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path0, 0);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
// in single quotes
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), parser.getSettingEntries(cfgDescription, file1, languageId).get(0));
|
||||
// in double quotes
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), parser.getSettingEntries(cfgDescription, file2, languageId).get(0));
|
||||
// Unix EOL
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), parser.getSettingEntries(cfgDescription, file3, languageId).get(0));
|
||||
// Windows EOL
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), parser.getSettingEntries(cfgDescription, file4, languageId).get(0));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1150,13 +1033,9 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check entries
|
||||
IPath path0 = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
assertEquals(new CIncludePathEntry(path0, 0), entries.get(0));
|
||||
// Information from build output should take precedence over build dir
|
||||
assertEquals(new CIncludePathEntry(project.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), parser.getSettingEntries(cfgDescription, file, languageId).get(0));
|
||||
// Information from build output should take precedence over build dir
|
||||
assertEquals(new CIncludePathEntry(project.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), parser.getSettingEntries(cfgDescription, file, languageId).get(1));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1186,24 +1065,17 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check populated entries
|
||||
IPath path0 = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file0, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path0, 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(0);
|
||||
assertEquals(expected, entry);
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file1, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path0, 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(0);
|
||||
assertEquals(expected, entry);
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file2, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path0, 0);
|
||||
CIncludePathEntry entry = (CIncludePathEntry)entries.get(0);
|
||||
assertEquals(expected, entry);
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), entries.get(0));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1273,13 +1145,11 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
// check that relative paths are relative to CWD which is the location of the project
|
||||
assertEquals(new CIncludePathEntry(project.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(project.getLocation().removeLastSegments(1), 0), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(2));
|
||||
assertEquals(new CIncludePathEntry(folderComposite.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(3));
|
||||
}
|
||||
// check that relative paths are relative to CWD which is the location of the project
|
||||
assertEquals(new CIncludePathEntry(project.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(project.getLocation().removeLastSegments(1), 0), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(2));
|
||||
assertEquals(new CIncludePathEntry(folderComposite.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(3));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1313,11 +1183,9 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(".", 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("..", 0), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry("Folder", 0), entries.get(2));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry(".", 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("..", 0), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry("Folder", 0), entries.get(2));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1349,10 +1217,8 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(1, entries.size());
|
||||
}
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(1, entries.size());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1392,13 +1258,11 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().removeLastSegments(1), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getLocation().removeLastSegments(3), 0), entries.get(2));
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(3));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().append("MissingFolder"), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(4));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().removeLastSegments(1), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getLocation().removeLastSegments(3), 0), entries.get(2));
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(3));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().append("MissingFolder"), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(4));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1467,11 +1331,9 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().removeLastSegments(1), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().append("Folder"), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(2));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().removeLastSegments(1), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().append("Folder"), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(2));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1509,12 +1371,10 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
IPath buildPath = new Path(uriBuildDir.getPath()).setDevice(project.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(buildPath, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(buildPath.removeLastSegments(1), 0), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(buildPath.append("Folder"), 0), entries.get(2));
|
||||
}
|
||||
IPath buildPath = new Path(uriBuildDir.getPath()).setDevice(project.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(buildPath, 0), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(buildPath.removeLastSegments(1), 0), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(buildPath.append("Folder"), 0), entries.get(2));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1555,13 +1415,11 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(folder2.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(2));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().append("MissingFolder"), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(3));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().append("MissingFolder2"), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(4));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry(folder2.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(2));
|
||||
assertEquals(new CIncludePathEntry("/BuildDir/MissingFolder", 0), entries.get(3));
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath().append("MissingFolder2"), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(4));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1601,18 +1459,10 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(mappedFolder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/Ambiguous/Folder").setDevice(file.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(path, 0), entries.get(2));
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/Missing/Folder").setDevice(file.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(path, 0), entries.get(3));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(mappedFolder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry("/Ambiguous/Folder", 0), entries.get(2));
|
||||
assertEquals(new CIncludePathEntry("/Missing/Folder", 0), entries.get(3));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1654,17 +1504,9 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/Ambiguous/Folder").setDevice(file.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(path, 0), entries.get(1));
|
||||
}
|
||||
{
|
||||
IPath path = new Path("/Missing/Folder").setDevice(file.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(path, 0), entries.get(2));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/Ambiguous/Folder", 0), entries.get(1));
|
||||
assertEquals(new CIncludePathEntry("/Missing/Folder", 0), entries.get(2));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1713,12 +1555,8 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(folderInReferencedProject.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
|
||||
IPath path = new Path("/Ambiguous/Folder").setDevice(file.getLocation().getDevice());
|
||||
assertEquals(new CIncludePathEntry(path, 0), entries.get(1));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry(folderInReferencedProject.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry("/Ambiguous/Folder", 0), entries.get(1));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1755,11 +1593,9 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check populated entries
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(dir2.removeLastSegments(1), 0);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(dir2.removeLastSegments(1), 0);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1796,11 +1632,9 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check populated entries
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1841,10 +1675,8 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(includeDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(includeDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1886,11 +1718,8 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(includeDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
}
|
||||
|
||||
assertEquals(new CIncludePathEntry(buildDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(includeDir.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(1));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1964,12 +1793,7 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check populated entries
|
||||
IPath path0 = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path0, 0);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), parser.getSettingEntries(cfgDescription, file, languageId).get(0));
|
||||
|
||||
// cleanup
|
||||
contentType.removeFileSpec("x++", IContentTypeSettings.FILE_EXTENSION_SPEC);
|
||||
|
@ -1999,12 +1823,7 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check populated entries
|
||||
IPath path0 = new Path("/path0").setDevice(project.getLocation().getDevice());
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
CIncludePathEntry expected = new CIncludePathEntry(path0, 0);
|
||||
assertEquals(expected, entries.get(0));
|
||||
}
|
||||
assertEquals(new CIncludePathEntry("/path0", 0), parser.getSettingEntries(cfgDescription, file, languageId).get(0));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2039,15 +1858,15 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
parser.shutdown();
|
||||
|
||||
// check populated entries
|
||||
{
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
assertEquals(new CIncludePathEntry(project.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(new Path("/Python1025/Include").setDevice(project.getLocation().getDevice()), 0), entries.get(1));
|
||||
assertEquals(new CMacroEntry("BOOST_ALL_NO_LIB", "1", 0), entries.get(2));
|
||||
assertEquals(new CMacroEntry("BOOST_PYTHON_SOURCE", "", 0), entries.get(3));
|
||||
assertEquals(new CMacroEntry("BOOST_PYTHON_STATIC_LIB", "", 0), entries.get(4));
|
||||
assertEquals(5, entries.size());
|
||||
}
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
assertEquals(new CIncludePathEntry(project.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
// "/Python1025/Include" not expected to be there
|
||||
assertFalse(new java.io.File("/Python1025/Include").exists());
|
||||
assertEquals(new CIncludePathEntry("/Python1025/Include", 0), entries.get(1));
|
||||
assertEquals(new CMacroEntry("BOOST_ALL_NO_LIB", "1", 0), entries.get(2));
|
||||
assertEquals(new CMacroEntry("BOOST_PYTHON_SOURCE", "", 0), entries.get(3));
|
||||
assertEquals(new CMacroEntry("BOOST_PYTHON_STATIC_LIB", "", 0), entries.get(4));
|
||||
assertEquals(5, entries.size());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2082,11 +1901,9 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
String device = project.getLocation().getDevice();
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(new Path("/Absolute/Folder").setDevice(device), 0), entries.get(1));
|
||||
}
|
||||
String device = project.getLocation().getDevice();
|
||||
assertEquals(new CIncludePathEntry(folder.getFullPath(), ICSettingEntry.VALUE_WORKSPACE_PATH | ICSettingEntry.RESOLVED), entries.get(0));
|
||||
assertEquals(new CIncludePathEntry(new Path("/Absolute/Folder").setDevice(device), 0), entries.get(1));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2121,10 +1938,8 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> entries = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
{
|
||||
String device = project.getLocation().getDevice();
|
||||
assertEquals(new CIncludePathEntry(new Path("/LocallyMappedTo/Folder").setDevice(device), 0), entries.get(0));
|
||||
}
|
||||
String device = project.getLocation().getDevice();
|
||||
assertEquals(new CIncludePathEntry(new Path("/LocallyMappedTo/Folder").setDevice(device), 0), entries.get(0));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2153,14 +1968,10 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> expected = new ArrayList<ICLanguageSettingEntry>();
|
||||
expected.add(new CIncludePathEntry(new Path("/path0").setDevice(project.getLocation().getDevice()), 0));
|
||||
|
||||
List<ICLanguageSettingEntry> entriesFile = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
assertEquals(expected, entriesFile);
|
||||
List<ICLanguageSettingEntry> entriesFolder = parser.getSettingEntries(cfgDescription, folder, languageId);
|
||||
assertEquals(null, entriesFolder);
|
||||
List<ICLanguageSettingEntry> entriesProject = parser.getSettingEntries(cfgDescription, project, languageId);
|
||||
assertEquals(null, entriesProject);
|
||||
expected.add(new CIncludePathEntry("/path0", 0));
|
||||
assertEquals(expected, parser.getSettingEntries(cfgDescription, file, languageId));
|
||||
assertEquals(null, parser.getSettingEntries(cfgDescription, folder, languageId));
|
||||
assertEquals(null, parser.getSettingEntries(cfgDescription, project, languageId));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2189,14 +2000,10 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> expected = new ArrayList<ICLanguageSettingEntry>();
|
||||
expected.add(new CIncludePathEntry(new Path("/path0").setDevice(project.getLocation().getDevice()), 0));
|
||||
|
||||
List<ICLanguageSettingEntry> entriesFile = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
assertEquals(null, entriesFile);
|
||||
List<ICLanguageSettingEntry> entriesFolder = parser.getSettingEntries(cfgDescription, folder, languageId);
|
||||
assertEquals(expected, entriesFolder);
|
||||
List<ICLanguageSettingEntry> entriesProject = parser.getSettingEntries(cfgDescription, project, languageId);
|
||||
assertEquals(null, entriesProject);
|
||||
expected.add(new CIncludePathEntry("/path0", 0));
|
||||
assertEquals(null, parser.getSettingEntries(cfgDescription, file, languageId));
|
||||
assertEquals(expected, parser.getSettingEntries(cfgDescription, folder, languageId));
|
||||
assertEquals(null, parser.getSettingEntries(cfgDescription, project, languageId));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2225,14 +2032,11 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> expected = new ArrayList<ICLanguageSettingEntry>();
|
||||
expected.add(new CIncludePathEntry(new Path("/path0").setDevice(project.getLocation().getDevice()), 0));
|
||||
expected.add(new CIncludePathEntry("/path0", 0));
|
||||
|
||||
List<ICLanguageSettingEntry> entriesFile = parser.getSettingEntries(cfgDescription, file, languageId);
|
||||
assertEquals(null, entriesFile);
|
||||
List<ICLanguageSettingEntry> entriesFolder = parser.getSettingEntries(cfgDescription, folder, languageId);
|
||||
assertEquals(null, entriesFolder);
|
||||
List<ICLanguageSettingEntry> entriesProject = parser.getSettingEntries(cfgDescription, project, languageId);
|
||||
assertEquals(expected, entriesProject);
|
||||
assertEquals(null, parser.getSettingEntries(cfgDescription, file, languageId));
|
||||
assertEquals(null, parser.getSettingEntries(cfgDescription, folder, languageId));
|
||||
assertEquals(expected, parser.getSettingEntries(cfgDescription, project, languageId));
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -2261,7 +2065,7 @@ public class GCCBuildCommandParserTest extends BaseTestCase {
|
|||
|
||||
// check populated entries
|
||||
List<ICLanguageSettingEntry> expected = new ArrayList<ICLanguageSettingEntry>();
|
||||
expected.add(new CIncludePathEntry(new Path("/path0").setDevice(project.getLocation().getDevice()), 0));
|
||||
expected.add(new CIncludePathEntry("/path0", 0));
|
||||
assertEquals(expected, parser.getSettingEntries(null, project, languageId));
|
||||
}
|
||||
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
package org.eclipse.cdt.managedbuilder.language.settings.providers;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
import java.net.URISyntaxException;
|
||||
import java.util.ArrayList;
|
||||
|
@ -759,38 +758,61 @@ public abstract class AbstractLanguageSettingsOutputScanner extends LanguageSett
|
|||
}
|
||||
|
||||
/**
|
||||
* The manipulations here are done to resolve "../" navigation for symbolic links where "link/.." cannot
|
||||
* be collapsed as it must follow the real file-system path. {@link java.io.File#getCanonicalPath()} deals
|
||||
* with that correctly but {@link Path} or {@link URI} try to normalize the path which would be incorrect
|
||||
* here.
|
||||
* The manipulations here are done to resolve problems such as "../" navigation for symbolic links where
|
||||
* "link/.." cannot be collapsed as it must follow the real file-system path. {@link java.io.File#getCanonicalPath()}
|
||||
* deals with that correctly but {@link Path} or {@link URI} try to normalize the path which would be incorrect here.
|
||||
* Another issue being resolved here is fixing drive letters in URI syntax.
|
||||
*/
|
||||
private static URI resolvePathFromBaseLocation(String name, IPath baseLocation) {
|
||||
String pathName = name;
|
||||
private static URI resolvePathFromBaseLocation(String pathStr0, IPath baseLocation) {
|
||||
String pathStr = pathStr0;
|
||||
if (baseLocation != null && !baseLocation.isEmpty()) {
|
||||
pathName = pathName.replace(File.separatorChar, '/');
|
||||
String device = new Path(pathName).getDevice();
|
||||
if (device==null || device.equals(baseLocation.getDevice())) {
|
||||
pathStr = pathStr.replace(File.separatorChar, '/');
|
||||
String device = new Path(pathStr).getDevice();
|
||||
if (device == null || device.equals(baseLocation.getDevice())) {
|
||||
if (device != null && device.length() > 0) {
|
||||
pathName = pathName.substring(device.length());
|
||||
pathStr = pathStr.substring(device.length());
|
||||
}
|
||||
|
||||
baseLocation = baseLocation.addTrailingSeparator();
|
||||
if (pathName.startsWith("/")) { //$NON-NLS-1$
|
||||
pathName = pathName.substring(1);
|
||||
if (pathStr.startsWith("/")) { //$NON-NLS-1$
|
||||
pathStr = pathStr.substring(1);
|
||||
}
|
||||
pathName = baseLocation.toString() + pathName;
|
||||
pathStr = baseLocation.toString() + pathStr;
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
File file = new File(pathName);
|
||||
File file = new File(pathStr);
|
||||
file = file.getCanonicalFile();
|
||||
return file.toURI();
|
||||
} catch (IOException e) {
|
||||
// if error just leave it as is
|
||||
URI uri = file.toURI();
|
||||
if (file.exists()) {
|
||||
return uri;
|
||||
}
|
||||
|
||||
IPath path0 = new Path(pathStr0);
|
||||
if (!path0.isAbsolute()) {
|
||||
return uri;
|
||||
}
|
||||
|
||||
String device = path0.getDevice();
|
||||
if (device == null || device.isEmpty()) {
|
||||
// Avoid spurious adding of drive letters on Windows
|
||||
pathStr = path0.setDevice(null).toString();
|
||||
} else {
|
||||
// On Windows "C:/folder/" -> "/C:/folder/"
|
||||
if (pathStr.charAt(0) != IPath.SEPARATOR) {
|
||||
pathStr = IPath.SEPARATOR + pathStr;
|
||||
}
|
||||
}
|
||||
|
||||
return new URI(uri.getScheme(), uri.getAuthority(), pathStr, uri.getQuery(), uri.getFragment());
|
||||
|
||||
} catch (Exception e) {
|
||||
// if error will leave it as is
|
||||
ManagedBuilderCorePlugin.log(e);
|
||||
}
|
||||
|
||||
return org.eclipse.core.filesystem.URIUtil.toURI(pathName);
|
||||
return org.eclipse.core.filesystem.URIUtil.toURI(pathStr);
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -934,12 +956,17 @@ public abstract class AbstractLanguageSettingsOutputScanner extends LanguageSett
|
|||
String pathStr = EFSExtensionManager.getDefault().getMappedPath(uri);
|
||||
uri = org.eclipse.core.filesystem.URIUtil.toURI(pathStr);
|
||||
|
||||
try {
|
||||
File file = new java.io.File(uri);
|
||||
String canonicalPathStr = file.getCanonicalPath();
|
||||
return new Path(canonicalPathStr);
|
||||
} catch (Exception e) {
|
||||
ManagedBuilderCorePlugin.log(e);
|
||||
if (uri != null && uri.isAbsolute()) {
|
||||
try {
|
||||
File file = new java.io.File(uri);
|
||||
String canonicalPathStr = file.getCanonicalPath();
|
||||
if (new Path(pathStr).getDevice() == null) {
|
||||
return new Path(canonicalPathStr).setDevice(null);
|
||||
}
|
||||
return new Path(canonicalPathStr);
|
||||
} catch (Exception e) {
|
||||
ManagedBuilderCorePlugin.log(e);
|
||||
}
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
|
|
@ -1302,6 +1302,9 @@ public class BuildOptionSettingsUI extends AbstractToolSettingUI {
|
|||
return selected;
|
||||
}
|
||||
|
||||
/**
|
||||
* @since 8.2
|
||||
*/
|
||||
public void setSelection(ITreeOption option) {
|
||||
if (treeRoot == getRoot(option)) { // only work in the same tree
|
||||
selected = option;
|
||||
|
|
|
@ -15,10 +15,7 @@ package org.eclipse.cdt.core.dom.ast;
|
|||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface IASTTypeId extends IASTNode {
|
||||
/**
|
||||
* Constant.
|
||||
*/
|
||||
public static final IASTTypeId[] EMPTY_TYPEID_ARRAY = new IASTTypeId[0];
|
||||
public static final IASTTypeId[] EMPTY_TYPEID_ARRAY = {};
|
||||
|
||||
/**
|
||||
* <code>DECL_SPECIFIER</code> represents the relationship between an <code>IASTTypeId</code>
|
||||
|
@ -35,7 +32,7 @@ public interface IASTTypeId extends IASTNode {
|
|||
"IASTTypeId.ABSTRACT_DECLARATOR - IASTDeclarator for IASTTypeId"); //$NON-NLS-1$
|
||||
|
||||
/**
|
||||
* Get the decl specifier.
|
||||
* Returns the decl specifier.
|
||||
* @return <code>IASTDeclSpecifier</code>
|
||||
*/
|
||||
public IASTDeclSpecifier getDeclSpecifier();
|
||||
|
@ -54,7 +51,7 @@ public interface IASTTypeId extends IASTNode {
|
|||
public IASTDeclarator getAbstractDeclarator();
|
||||
|
||||
/**
|
||||
* Set the abstract declarator.
|
||||
* Sets the abstract declarator.
|
||||
* @param abstractDeclarator <code>IASTDeclarator</code>
|
||||
*/
|
||||
public void setAbstractDeclarator(IASTDeclarator abstractDeclarator);
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* John Camelon (IBM Rational Software) - Initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* John Camelon (IBM Rational Software) - Initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast;
|
||||
|
||||
|
@ -16,9 +16,8 @@ package org.eclipse.cdt.core.dom.ast;
|
|||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface IASTTypeIdExpression extends IASTExpression {
|
||||
|
||||
/**
|
||||
* <code>op_sizeof</code> sizeof( typeId ) expression
|
||||
* <code>op_sizeof</code> sizeof (typeId) expression
|
||||
*/
|
||||
public static final int op_sizeof = 0;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Doug Schaefer (IBM) - Initial API and implementation
|
||||
* Doug Schaefer (IBM) - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast;
|
||||
|
||||
|
@ -17,7 +17,6 @@ package org.eclipse.cdt.core.dom.ast;
|
|||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface IASTWhileStatement extends IASTStatement {
|
||||
|
||||
/**
|
||||
* <code>CONDITIONEXPRESSION</code> represents the relationship between an <code>IASTWhileStatement</code> and
|
||||
* it's nested <code>IASTExpression</code>.
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Tomasz Wesolowski - initial API and implementation
|
||||
* Tomasz Wesolowski - initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast;
|
||||
|
||||
|
@ -19,7 +19,6 @@ package org.eclipse.cdt.core.dom.ast;
|
|||
* @since 5.3
|
||||
*/
|
||||
public interface ICPPASTCompletionContext extends IASTCompletionContext {
|
||||
|
||||
/**
|
||||
* Returns bindings that start with the given name or prefix, only considering those that are valid for
|
||||
* this context, including those in the requested set of namespaces.
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* IBM - Initial API and implementation
|
||||
* IBM - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast;
|
||||
|
||||
|
@ -21,15 +21,16 @@ public interface ICompositeType extends IBinding, IType {
|
|||
public static final int k_union = IASTCompositeTypeSpecifier.k_union;
|
||||
|
||||
/**
|
||||
* Returns the type of the composite, {@link #k_struct}, {@link #k_union}, or
|
||||
* {@link org.eclipse.cdt.core.dom.ast.cpp.ICPPClassType#k_class}.
|
||||
* Returns the type of the composite, {@link #k_struct}, {@link #k_union},
|
||||
* or {@link org.eclipse.cdt.core.dom.ast.cpp.ICPPClassType#k_class}.
|
||||
*/
|
||||
public int getKey();
|
||||
|
||||
/**
|
||||
* Returns whether the type is anonymous or not. A type for which objects or
|
||||
* pointers are declared is not considered an anonymous type.
|
||||
* <pre> struct Outer {
|
||||
* <pre>
|
||||
* struct Outer {
|
||||
* struct {int a;}; // anonymous
|
||||
* struct {int b;} c; // not anonymous
|
||||
* }
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Andrew Ferguson (Symbian) - Initial Implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* Andrew Ferguson (Symbian) - Initial Implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast.cpp;
|
||||
|
||||
|
@ -17,8 +17,7 @@ import org.eclipse.cdt.core.dom.ast.IASTNode;
|
|||
import org.eclipse.cdt.core.dom.ast.IASTTypeId;
|
||||
|
||||
/**
|
||||
* Place-holder in the AST for template arguments that are not yet
|
||||
* understood.
|
||||
* Place-holder in the AST for template arguments that are not yet understood.
|
||||
*
|
||||
* @noextend This interface is not intended to be extended by clients.
|
||||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
|
|
|
@ -10,11 +10,10 @@
|
|||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast.cpp;
|
||||
|
||||
|
||||
/**
|
||||
* @noextend This interface is not intended to be extended by clients.
|
||||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface ICPPConstructor extends ICPPMethod {
|
||||
public static final ICPPConstructor [] EMPTY_CONSTRUCTOR_ARRAY = new ICPPConstructor[0];
|
||||
public static final ICPPConstructor[] EMPTY_CONSTRUCTOR_ARRAY = {};
|
||||
}
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Bryan Wilkinson (QNX) - Initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* Bryan Wilkinson (QNX) - Initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast.cpp;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Markus Schorn - initial API and implementation
|
||||
* Markus Schorn - initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast.cpp;
|
||||
|
||||
|
@ -21,7 +21,6 @@ import org.eclipse.cdt.core.dom.ast.IType;
|
|||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface ICPPEnumeration extends IEnumeration, ICPPBinding {
|
||||
|
||||
/**
|
||||
* Returns whether this enumeration is scoped.
|
||||
* An enumeration can only be scoped in C++.
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Doug Schaefer (IBM) - Initial API and implementation
|
||||
* Doug Schaefer (IBM) - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast.cpp;
|
||||
|
||||
|
@ -17,6 +17,5 @@ import org.eclipse.cdt.core.dom.ast.IField;
|
|||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface ICPPField extends IField, ICPPMember, ICPPVariable {
|
||||
public static final ICPPField [] EMPTY_CPPFIELD_ARRAY = new ICPPField[0];
|
||||
|
||||
public static final ICPPField[] EMPTY_CPPFIELD_ARRAY = {};
|
||||
}
|
||||
|
|
|
@ -1,13 +1,13 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2005, 2010 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
* Copyright (c) 2005, 2010 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Andrew Niefer (IBM Corporation) - initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* Contributors:
|
||||
* Andrew Niefer (IBM Corporation) - initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast.cpp;
|
||||
|
||||
|
|
|
@ -18,7 +18,6 @@ import org.eclipse.cdt.core.dom.ast.IScope;
|
|||
* @noimplement This interface is not intended to be implemented by clients.
|
||||
*/
|
||||
public interface ICPPFunctionScope extends ICPPScope {
|
||||
|
||||
/**
|
||||
* Get the scope representing the function body. returns null if there is no
|
||||
* function definition
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2005, 2009 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
* Copyright (c) 2005, 2009 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Andrew Niefer (IBM) - Initial API and implementation
|
||||
* Contributors:
|
||||
* Andrew Niefer (IBM) - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.core.dom.ast.cpp;
|
||||
|
||||
|
@ -17,5 +17,4 @@ package org.eclipse.cdt.core.dom.ast.cpp;
|
|||
* @noextend This interface is not intended to be extended by clients.
|
||||
*/
|
||||
public interface ICPPFunctionTemplate extends ICPPFunction, ICPPTemplateDefinition {
|
||||
|
||||
}
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* IBM - Initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* IBM - Initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.dom.parser;
|
||||
|
||||
|
|
|
@ -6,10 +6,10 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* IBM - Initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* Bryan Wilkinson (QNX)
|
||||
* Andrew Ferguson (Symbian)
|
||||
* IBM - Initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* Bryan Wilkinson (QNX)
|
||||
* Andrew Ferguson (Symbian)
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||
|
||||
|
@ -91,7 +91,8 @@ public class AbstractCPPClassSpecializationScope implements ICPPClassSpecializat
|
|||
return CPPSemantics.resolveAmbiguities(name, specs);
|
||||
}
|
||||
|
||||
@Deprecated @Override
|
||||
@Deprecated
|
||||
@Override
|
||||
final public IBinding[] getBindings(IASTName name, boolean resolve, boolean prefixLookup,
|
||||
IIndexFileSet fileSet) {
|
||||
return getBindings(new ScopeLookupData(name, resolve, prefixLookup));
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Markus Schorn - initial API and implementation
|
||||
* Markus Schorn - initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Markus Schorn - Initial API and implementation
|
||||
* Markus Schorn - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Markus Schorn - Initial API and implementation
|
||||
* Markus Schorn - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||
|
||||
|
@ -15,8 +15,8 @@ import org.eclipse.cdt.core.dom.ast.IASTFunctionCallExpression;
|
|||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTExpression;
|
||||
import org.eclipse.cdt.internal.core.dom.parser.ASTAmbiguousCastVsFunctionCallExpression;
|
||||
|
||||
public class CPPASTAmbiguousCastVsFunctionCallExpression extends
|
||||
ASTAmbiguousCastVsFunctionCallExpression implements ICPPASTExpression {
|
||||
public class CPPASTAmbiguousCastVsFunctionCallExpression
|
||||
extends ASTAmbiguousCastVsFunctionCallExpression implements ICPPASTExpression {
|
||||
|
||||
public CPPASTAmbiguousCastVsFunctionCallExpression(IASTCastExpression castExpr, IASTFunctionCallExpression funcCall) {
|
||||
super(castExpr, funcCall);
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Markus Schorn - initial API and implementation
|
||||
* Markus Schorn - initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||
|
||||
|
|
|
@ -18,17 +18,15 @@ import org.eclipse.cdt.core.parser.util.ArrayUtil;
|
|||
import org.eclipse.cdt.internal.core.dom.parser.ASTAmbiguousNode;
|
||||
import org.eclipse.cdt.internal.core.dom.parser.IASTAmbiguousExpression;
|
||||
|
||||
public class CPPASTAmbiguousExpression extends ASTAmbiguousNode implements
|
||||
IASTAmbiguousExpression, ICPPASTExpression {
|
||||
|
||||
private IASTExpression [] exp = new IASTExpression[2];
|
||||
private int expPos=-1;
|
||||
public class CPPASTAmbiguousExpression extends ASTAmbiguousNode
|
||||
implements IASTAmbiguousExpression, ICPPASTExpression {
|
||||
private IASTExpression[] exp = new IASTExpression[2];
|
||||
private int expPos= -1;
|
||||
|
||||
public CPPASTAmbiguousExpression(IASTExpression... expressions) {
|
||||
for(IASTExpression e : expressions)
|
||||
addExpression(e);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public IASTExpression copy() {
|
||||
|
@ -44,7 +42,7 @@ public class CPPASTAmbiguousExpression extends ASTAmbiguousNode implements
|
|||
public void addExpression(IASTExpression e) {
|
||||
assertNotFrozen();
|
||||
if (e != null) {
|
||||
exp = ArrayUtil.appendAt( IASTExpression.class, exp, ++expPos, e );
|
||||
exp = ArrayUtil.appendAt(IASTExpression.class, exp, ++expPos, e);
|
||||
e.setParent(this);
|
||||
e.setPropertyInParent(SUBEXPRESSION);
|
||||
}
|
||||
|
@ -52,7 +50,7 @@ public class CPPASTAmbiguousExpression extends ASTAmbiguousNode implements
|
|||
|
||||
@Override
|
||||
public IASTExpression[] getExpressions() {
|
||||
exp = ArrayUtil.trimAt( IASTExpression.class, exp, expPos );
|
||||
exp = ArrayUtil.trimAt(IASTExpression.class, exp, expPos);
|
||||
return exp;
|
||||
}
|
||||
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Markus Schorn - Initial API and implementation
|
||||
* Markus Schorn - Initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||
|
||||
|
@ -34,9 +34,8 @@ import org.eclipse.core.runtime.Assert;
|
|||
* <br>
|
||||
* template<typename... T> void function(T ...); // is T a parameter pack?
|
||||
*/
|
||||
public class CPPASTAmbiguousParameterDeclaration extends ASTAmbiguousNode implements
|
||||
IASTAmbiguousParameterDeclaration, ICPPASTParameterDeclaration {
|
||||
|
||||
public class CPPASTAmbiguousParameterDeclaration extends ASTAmbiguousNode
|
||||
implements IASTAmbiguousParameterDeclaration, ICPPASTParameterDeclaration {
|
||||
private ICPPASTParameterDeclaration fParameterDecl;
|
||||
|
||||
public CPPASTAmbiguousParameterDeclaration(ICPPASTParameterDeclaration decl) {
|
||||
|
@ -47,7 +46,6 @@ public class CPPASTAmbiguousParameterDeclaration extends ASTAmbiguousNode implem
|
|||
public void addParameterDeclaration(IASTParameterDeclaration d) {
|
||||
assert false;
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected final IASTNode doResolveAmbiguity(ASTVisitor resolver) {
|
||||
|
@ -73,7 +71,7 @@ public class CPPASTAmbiguousParameterDeclaration extends ASTAmbiguousNode implem
|
|||
final ASTNode asNode = (ASTNode) dtor;
|
||||
if (ptrOps.length > 0) {
|
||||
final ASTNode first = (ASTNode)ptrOps[0];
|
||||
final ASTNode last = (ASTNode)ptrOps[ptrOps.length-1];
|
||||
final ASTNode last = (ASTNode)ptrOps[ptrOps.length - 1];
|
||||
asNode.setOffsetAndLength(first.getOffset(), last.getOffset() + last.getLength());
|
||||
} else {
|
||||
asNode.setOffsetAndLength(0, 0);
|
||||
|
@ -82,7 +80,7 @@ public class CPPASTAmbiguousParameterDeclaration extends ASTAmbiguousNode implem
|
|||
|
||||
@Override
|
||||
public IASTParameterDeclaration[] getParameterDeclarations() {
|
||||
return new IASTParameterDeclaration[] {fParameterDecl};
|
||||
return new IASTParameterDeclaration[] { fParameterDecl };
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -32,8 +32,9 @@ public class CPPASTAmbiguousStatement extends ASTAmbiguousNode implements IASTAm
|
|||
private IASTDeclaration fDeclaration;
|
||||
|
||||
public CPPASTAmbiguousStatement(IASTStatement... statements) {
|
||||
for (IASTStatement s : statements)
|
||||
for (IASTStatement s : statements) {
|
||||
addStatement(s);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Andrew Ferguson (Symbian) - Initial Implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* IBM Corporation
|
||||
* Andrew Ferguson (Symbian) - Initial Implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
* IBM Corporation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||
|
||||
|
@ -33,15 +33,15 @@ import org.eclipse.core.runtime.Assert;
|
|||
* Ambiguity node for deciding between type-id and id-expression in a template argument.
|
||||
*/
|
||||
public class CPPASTAmbiguousTemplateArgument extends ASTAmbiguousNode implements ICPPASTAmbiguousTemplateArgument {
|
||||
|
||||
private List<IASTNode> fNodes;
|
||||
|
||||
|
||||
/**
|
||||
* @param nodes nodes of type {@link IASTTypeId}, {@link IASTIdExpression} or {@link ICPPASTPackExpansionExpression}.
|
||||
* @param nodes nodes of type {@link IASTTypeId}, {@link IASTIdExpression}
|
||||
* or {@link ICPPASTPackExpansionExpression}.
|
||||
*/
|
||||
public CPPASTAmbiguousTemplateArgument(IASTNode... nodes) {
|
||||
fNodes= new ArrayList<IASTNode>(2);
|
||||
for(IASTNode node : nodes) {
|
||||
for (IASTNode node : nodes) {
|
||||
if (node instanceof IASTTypeId || node instanceof IASTIdExpression) {
|
||||
fNodes.add(node);
|
||||
} else if (node instanceof ICPPASTPackExpansionExpression) {
|
||||
|
@ -56,7 +56,6 @@ public class CPPASTAmbiguousTemplateArgument extends ASTAmbiguousNode implements
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected void beforeAlternative(IASTNode node) {
|
||||
|
@ -77,13 +76,11 @@ public class CPPASTAmbiguousTemplateArgument extends ASTAmbiguousNode implements
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
protected void afterResolution(ASTVisitor resolver, IASTNode best) {
|
||||
beforeAlternative(best);
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public IASTNode copy() {
|
||||
return copy(CopyStyle.withoutLocations);
|
||||
|
@ -91,15 +88,14 @@ public class CPPASTAmbiguousTemplateArgument extends ASTAmbiguousNode implements
|
|||
|
||||
@Override
|
||||
public IASTNode copy(CopyStyle style) {
|
||||
|
||||
int sizeOfNodes = fNodes.size();
|
||||
IASTNode[] copyNodes = new IASTNode[sizeOfNodes];
|
||||
int arrayIndex = 0;
|
||||
for(IASTNode node : fNodes) {
|
||||
if(node!=null){
|
||||
for (IASTNode node : fNodes) {
|
||||
if (node != null) {
|
||||
copyNodes[arrayIndex] = node.copy(style);
|
||||
}else{
|
||||
copyNodes[arrayIndex]=null;
|
||||
} else {
|
||||
copyNodes[arrayIndex] = null;
|
||||
}
|
||||
arrayIndex++;
|
||||
}
|
||||
|
|
|
@ -1,11 +1,11 @@
|
|||
/*******************************************************************************
|
||||
* Copyright (c) 2004, 2010 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
* Copyright (c) 2004, 2010 IBM Corporation and others.
|
||||
* All rights reserved. This program and the accompanying materials
|
||||
* are made available under the terms of the Eclipse Public License v1.0
|
||||
* which accompanies this distribution, and is available at
|
||||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Contributors:
|
||||
* Andrew Niefer (IBM Corporation) - initial API and implementation
|
||||
* Markus Schorn (Wind River Systems)
|
||||
*******************************************************************************/
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* http://www.eclipse.org/legal/epl-v10.html
|
||||
*
|
||||
* Contributors:
|
||||
* Markus Schorn - initial API and implementation
|
||||
* Markus Schorn - initial API and implementation
|
||||
*******************************************************************************/
|
||||
package org.eclipse.cdt.internal.core.dom.parser.cpp;
|
||||
|
||||
|
|
|
@ -16,7 +16,17 @@
|
|||
package org.eclipse.cdt.internal.core.dom.parser.cpp.semantics;
|
||||
|
||||
import static org.eclipse.cdt.core.dom.ast.IASTExpression.ValueCategory.LVALUE;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.*;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.ALLCVQ;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.ARRAY;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.CVTYPE;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.MPTR;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.PTR;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.REF;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.TDEF;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.calculateInheritanceDepth;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.getNestedType;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.getUltimateTypeUptoPointers;
|
||||
import static org.eclipse.cdt.internal.core.dom.parser.cpp.semantics.SemanticUtil.isConversionOperator;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
@ -3261,7 +3271,7 @@ public class CPPSemantics {
|
|||
if (tu != null && funcData.foundItems instanceof Object[]) {
|
||||
final IIndexFileSet fileSet = tu.getIndexFileSet();
|
||||
if (fileSet != null) {
|
||||
int j=0;
|
||||
int j= 0;
|
||||
final Object[] items= (Object[]) funcData.foundItems;
|
||||
for (int i = 0; i < items.length; i++) {
|
||||
Object item = items[i];
|
||||
|
@ -3292,7 +3302,7 @@ public class CPPSemantics {
|
|||
items[j++]= func;
|
||||
}
|
||||
}
|
||||
if (j>0) {
|
||||
if (j > 0) {
|
||||
while (j < items.length)
|
||||
items[j++]= null;
|
||||
}
|
||||
|
|
|
@ -51,6 +51,7 @@ import org.eclipse.cdt.core.dom.ast.ISemanticProblem;
|
|||
import org.eclipse.cdt.core.dom.ast.IType;
|
||||
import org.eclipse.cdt.core.dom.ast.ITypedef;
|
||||
import org.eclipse.cdt.core.dom.ast.IValue;
|
||||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTAmbiguousTemplateArgument;
|
||||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTCompositeTypeSpecifier;
|
||||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTCompositeTypeSpecifier.ICPPASTBaseSpecifier;
|
||||
import org.eclipse.cdt.core.dom.ast.cpp.ICPPASTDeclSpecifier;
|
||||
|
@ -224,7 +225,7 @@ public class CPPTemplates {
|
|||
}
|
||||
|
||||
if (isPack) {
|
||||
int packOffset= numParams-1;
|
||||
int packOffset= numParams - 1;
|
||||
int packSize= numArgs - packOffset;
|
||||
ICPPTemplateArgument[] pack= new ICPPTemplateArgument[packSize];
|
||||
System.arraycopy(arguments, packOffset, pack, 0, packSize);
|
||||
|
@ -401,7 +402,7 @@ public class CPPTemplates {
|
|||
for (int i = 0; i < arguments.length; i++) {
|
||||
ICPPTemplateArgument arg = arguments[i];
|
||||
if (arg.isPackExpansion()) {
|
||||
if (i != arguments.length-1) {
|
||||
if (i != arguments.length - 1) {
|
||||
return arguments;
|
||||
}
|
||||
havePackExpansion= true;
|
||||
|
@ -420,10 +421,10 @@ public class CPPTemplates {
|
|||
|
||||
// More arguments allowed if we have a parameter pack.
|
||||
if (tparCount < argCount) {
|
||||
if (tpars[tparCount-1].isParameterPack())
|
||||
if (tpars[tparCount - 1].isParameterPack())
|
||||
return arguments;
|
||||
|
||||
if (havePackExpansion && tparCount+1 == argCount)
|
||||
if (havePackExpansion && tparCount + 1 == argCount)
|
||||
return arguments;
|
||||
return null;
|
||||
}
|
||||
|
@ -433,7 +434,7 @@ public class CPPTemplates {
|
|||
return arguments;
|
||||
|
||||
// Fewer arguments are allowed with default arguments
|
||||
if (tpars[tparCount-1].isParameterPack())
|
||||
if (tpars[tparCount - 1].isParameterPack())
|
||||
tparCount--;
|
||||
|
||||
if (tparCount == argCount)
|
||||
|
@ -1024,7 +1025,7 @@ public class CPPTemplates {
|
|||
} else if (packSize == PACK_SIZE_DEFER) {
|
||||
newType= origType;
|
||||
} else {
|
||||
IType[] newResult= new IType[result.length+packSize-1];
|
||||
IType[] newResult= new IType[result.length + packSize - 1];
|
||||
System.arraycopy(result, 0, newResult, 0, j);
|
||||
result= newResult;
|
||||
for (int k= 0; k < packSize; k++) {
|
||||
|
@ -1167,7 +1168,7 @@ public class CPPTemplates {
|
|||
return type;
|
||||
}
|
||||
// The parameter types need to be adjusted.
|
||||
for (int i=0; i<params.length; i++) {
|
||||
for (int i= 0; i < params.length; i++) {
|
||||
IType p= params[i];
|
||||
if (!isDependentType(p)) {
|
||||
params[i]= CPPVisitor.adjustParameterType(p, true);
|
||||
|
@ -1395,7 +1396,7 @@ public class CPPTemplates {
|
|||
int depIDCount= 0;
|
||||
IASTName owner= null;
|
||||
final IASTName[] ns= qname.getNames();
|
||||
for (int i = 0; i < ns.length-1; i++) {
|
||||
for (int i = 0; i < ns.length - 1; i++) {
|
||||
IASTName n= ns[i];
|
||||
if (n instanceof ICPPASTTemplateId) {
|
||||
if (depIDCount > 0 || usesTemplateParameter((ICPPASTTemplateId) n, tparnames)) {
|
||||
|
@ -1438,17 +1439,17 @@ public class CPPTemplates {
|
|||
b= b.getOwner();
|
||||
}
|
||||
if (depIDCount > 0) {
|
||||
nestingLevel+= depIDCount;
|
||||
nestingLevel += depIDCount;
|
||||
} else if (consumesTDecl < tdeclCount && !lastIsTemplate) {
|
||||
nestingLevel++;
|
||||
lastIsTemplate= true;
|
||||
}
|
||||
} else {
|
||||
nestingLevel+= depIDCount;
|
||||
nestingLevel += depIDCount;
|
||||
node= outerMostTDecl.getParent();
|
||||
while (node != null) {
|
||||
if (node instanceof ICPPASTInternalTemplateDeclaration) {
|
||||
nestingLevel+= ((ICPPASTInternalTemplateDeclaration) node).getNestingLevel() + 1;
|
||||
nestingLevel += ((ICPPASTInternalTemplateDeclaration) node).getNestingLevel() + 1;
|
||||
break;
|
||||
}
|
||||
node= node.getParent();
|
||||
|
@ -1461,7 +1462,7 @@ public class CPPTemplates {
|
|||
node= outerMostTDecl.getParent();
|
||||
while (node != null) {
|
||||
if (node instanceof ICPPASTInternalTemplateDeclaration) {
|
||||
nestingLevel+= ((ICPPASTInternalTemplateDeclaration) node).getNestingLevel() + 1;
|
||||
nestingLevel += ((ICPPASTInternalTemplateDeclaration) node).getNestingLevel() + 1;
|
||||
break;
|
||||
}
|
||||
node= node.getParent();
|
||||
|
@ -1470,7 +1471,7 @@ public class CPPTemplates {
|
|||
}
|
||||
|
||||
node= innerMostTDecl;
|
||||
while(node instanceof ICPPASTInternalTemplateDeclaration) {
|
||||
while (node instanceof ICPPASTInternalTemplateDeclaration) {
|
||||
if (--nestingLevel < 0)
|
||||
nestingLevel= 0;
|
||||
tdecl= (ICPPASTInternalTemplateDeclaration) node;
|
||||
|
@ -1500,7 +1501,7 @@ public class CPPTemplates {
|
|||
|
||||
private static CharArraySet collectTemplateParameterNames(ICPPASTTemplateDeclaration tdecl) {
|
||||
CharArraySet set= new CharArraySet(4);
|
||||
while(true) {
|
||||
while (true) {
|
||||
ICPPASTTemplateParameter[] pars = tdecl.getTemplateParameters();
|
||||
for (ICPPASTTemplateParameter par : pars) {
|
||||
IASTName name= CPPTemplates.getTemplateParameterName(par);
|
||||
|
@ -1520,7 +1521,7 @@ public class CPPTemplates {
|
|||
private static boolean usesTemplateParameter(final ICPPASTTemplateId id, final CharArraySet names) {
|
||||
final boolean[] result= {false};
|
||||
ASTVisitor v= new ASTVisitor(false) {
|
||||
{ shouldVisitNames= true; shouldVisitAmbiguousNodes=true;}
|
||||
{ shouldVisitNames= true; shouldVisitAmbiguousNodes= true; }
|
||||
@Override
|
||||
public int visit(IASTName name) {
|
||||
if (name instanceof ICPPASTTemplateId)
|
||||
|
@ -1612,7 +1613,7 @@ public class CPPTemplates {
|
|||
}
|
||||
|
||||
private static ICPPASTInternalTemplateDeclaration getDirectlyEnclosingTemplateDeclaration(
|
||||
ICPPASTInternalTemplateDeclaration tdecl ) {
|
||||
ICPPASTInternalTemplateDeclaration tdecl) {
|
||||
final IASTNode parent= tdecl.getParent();
|
||||
if (parent instanceof ICPPASTInternalTemplateDeclaration)
|
||||
return (ICPPASTInternalTemplateDeclaration) parent;
|
||||
|
@ -1680,7 +1681,7 @@ public class CPPTemplates {
|
|||
if (args.length != specArgs.length) {
|
||||
return false;
|
||||
}
|
||||
for (int i=0; i < args.length; i++) {
|
||||
for (int i= 0; i < args.length; i++) {
|
||||
if (!specArgs[i].isSameValue(args[i]))
|
||||
return false;
|
||||
}
|
||||
|
@ -1706,6 +1707,10 @@ public class CPPTemplates {
|
|||
IType type= expr.getExpressionType();
|
||||
IValue value= Value.create((IASTExpression) arg, Value.MAX_RECURSION_DEPTH);
|
||||
result[i]= new CPPTemplateArgument(value, type);
|
||||
} else if (arg instanceof ICPPASTAmbiguousTemplateArgument) {
|
||||
throw new IllegalArgumentException(id.getRawSignature()
|
||||
+ " contains an ambiguous template argument at position " + i + " in " //$NON-NLS-1$ //$NON-NLS-2$
|
||||
+ id.getContainingFilename());
|
||||
} else {
|
||||
throw new IllegalArgumentException("Unexpected type: " + arg.getClass().getName()); //$NON-NLS-1$
|
||||
}
|
||||
|
@ -1792,7 +1797,7 @@ public class CPPTemplates {
|
|||
static ICPPFunction[] instantiateConversionTemplates(ICPPFunction[] functions, IType conversionType, IASTNode point) {
|
||||
boolean checkedForDependentType= false;
|
||||
ICPPFunction[] result= functions;
|
||||
int i=0;
|
||||
int i= 0;
|
||||
boolean done= false;
|
||||
for (ICPPFunction f : functions) {
|
||||
ICPPFunction inst = f;
|
||||
|
@ -1993,7 +1998,7 @@ public class CPPTemplates {
|
|||
}
|
||||
|
||||
private static IType[] concat(final IType t, IType[] types) {
|
||||
IType[] result= new IType[types.length+1];
|
||||
IType[] result= new IType[types.length + 1];
|
||||
result[0]= t;
|
||||
System.arraycopy(types, 0, result, 1, types.length);
|
||||
return result;
|
||||
|
@ -2216,8 +2221,8 @@ public class CPPTemplates {
|
|||
|
||||
private static boolean matchTemplateTemplateParameters(ICPPTemplateParameter[] pParams,
|
||||
ICPPTemplateParameter[] aParams) throws DOMException {
|
||||
int pi=0;
|
||||
int ai=0;
|
||||
int pi= 0;
|
||||
int ai= 0;
|
||||
while (pi < pParams.length && ai < aParams.length) {
|
||||
final ICPPTemplateParameter pp = pParams[pi];
|
||||
final ICPPTemplateParameter ap = aParams[ai];
|
||||
|
@ -2250,8 +2255,9 @@ public class CPPTemplates {
|
|||
}
|
||||
|
||||
if (!matchTemplateTemplateParameters(((ICPPTemplateTemplateParameter) pp).getTemplateParameters(),
|
||||
((ICPPTemplateTemplateParameter) ap).getTemplateParameters()) )
|
||||
((ICPPTemplateTemplateParameter) ap).getTemplateParameters())) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!pp.isParameterPack())
|
||||
|
|
|
@ -17,7 +17,7 @@ import org.eclipse.ltk.ui.refactoring.UserInputWizardPage;
|
|||
/**
|
||||
* @author Thomas Corbat
|
||||
*/
|
||||
public class GenerateGettersAndSettersWizard extends RefactoringWizard {
|
||||
public class GenerateGettersAndSettersWizard extends RefactoringWizard {
|
||||
public GenerateGettersAndSettersWizard(
|
||||
GenerateGettersAndSettersRefactoring refactoring) {
|
||||
super(refactoring, DIALOG_BASED_USER_INTERFACE | PREVIEW_EXPAND_FIRST_NODE);
|
||||
|
|
|
@ -7,7 +7,7 @@
|
|||
<parent>
|
||||
<groupId>org.eclipse.cdt</groupId>
|
||||
<artifactId>cdt-parent</artifactId>
|
||||
<version>8.1.0-SNAPSHOT</version>
|
||||
<version>8.2.0-SNAPSHOT</version>
|
||||
<relativePath>../../pom.xml</relativePath>
|
||||
</parent>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue