1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Content Assist work: Bug fixing

This commit is contained in:
Hoda Amer 2003-12-31 20:39:37 +00:00
parent 4ce12b38ca
commit b4c1ec6c05
2 changed files with 5 additions and 2 deletions

View file

@ -1,3 +1,6 @@
2003-12-31 Hoda Amer
Small change to test parameters with initial clause in ITemplateTest
2003-12-22 Hoda Amer 2003-12-22 Hoda Amer
Temporary disabled completion proposal test until a better test is written. Temporary disabled completion proposal test until a better test is written.

View file

@ -191,7 +191,7 @@ public class ITemplateTests extends IntegratedCModelTest {
//"nonVector" //"nonVector"
{"T"}, {"T"},
//"ArrayOverlay" //"ArrayOverlay"
{"X","Y","int"}, {"X","Y","int=16"},
//"TemplateContainer::fum" //"TemplateContainer::fum"
{"Bar"}, {"Bar"},
//"TemplateParameter::scrum" //"TemplateParameter::scrum"
@ -233,7 +233,7 @@ public class ITemplateTests extends IntegratedCModelTest {
String[] myExpectedValues = { String[] myExpectedValues = {
"Map<Key, Value, SortAlgorithm>", "Map<Key, Value, SortAlgorithm>",
"nonVector<T>", "nonVector<T>",
"ArrayOverlay<X, Y, int>", "ArrayOverlay<X, Y, int=16>",
"fum<Bar>(int) : void", "fum<Bar>(int) : void",
"scrum<int>(void) : void", // TODO: deduce the rules of () versus (void), compare below. "scrum<int>(void) : void", // TODO: deduce the rules of () versus (void), compare below.
"nonVector<T>::first<T>() : const T&", // TODO: where should <T> be? "nonVector<T>::first<T>() : const T&", // TODO: where should <T> be?