Skip to main content
summaryrefslogtreecommitdiffstats
path: root/core
AgeCommit message (Collapse)AuthorFilesLines
2004-01-05This commit was manufactured by cvs2svn to create tag 'CDT_2_0_M6'.CDT_2_0_M6cvs2svn1-0/+246
Sprout from master 2004-01-05 21:31:04 UTC John Camelon <jcamelon@ca.ibm.com> 'CORE' Cherrypick from master 2003-12-15 19:50:46 UTC Hoda Amer <hamer@ca.ibm.com> 'Fix for [Bug 47234] new ParserMode required for a better CModel': core/org.eclipse.cdt.core/model/org/eclipse/cdt/internal/core/model/StructuralParseCallback.java
2004-01-05COREJohn Camelon32-35/+7
Removed warnings. Moved StructuralParseCallback from model to parser directory to facilitate building the parser standalone.
2004-01-05Fix the classpaths to use dynamic containers again.Doug Schaefer5-102/+5
My apologies :-)
2004-01-05Added org.eclipse.core.runtime.compatability as aDoug Schaefer10-71/+173
dependency to satisfy Eclipse 3.0M6 requirements.
2003-12-31Content Assist work: Bug fixingHoda Amer2-2/+5
2003-12-31Content Assist work: Bug fixingHoda Amer4-2/+45
2003-12-30Content Assist work: Bug fixingHoda Amer6-30/+169
2003-12-29Content Assist workHoda Amer14-43/+159
2003-12-22Content Assist work : Template Engine workHoda Amer30-161/+572
2003-12-19updated logAlain Magloire1-0/+7
2003-12-19Added a CommandLauncher.getCommandLine()Alain Magloire1-10/+27
2003-12-19Fix PR 40247Alain Magloire2-4/+77
Overload the ViewSorter in CViewSorter not to use the labelProvider.
2003-12-17Symbol Table work for Content Assist By AndrewHoda Amer14-43/+275
2003-12-17Content Assist workHoda Amer45-562/+285
2003-12-17updated the log.Alain Magloire1-0/+9
2003-12-17Fix PR 48921.Alain Magloire1-1/+28
Check also for Object files.
2003-12-16Symbol Table work for Content Assist By AndrewHoda Amer53-137/+414
2003-12-15New Header icon from Mirza Hadzic.Alain Magloire5-1/+31
2003-12-15updated.Alain Magloire1-1/+9
2003-12-15Patch from Thomas F. Some patterns were markedAlain Magloire1-1/+11
as error instead of warning.
2003-12-15Fix for [Bug 47234] new ParserMode required for a better CModelHoda Amer20-136/+519
2003-12-15Fixed https://bugs.eclipse.org/bugs/show_bug.cgi?id=48619David Inglis4-54/+52
2003-12-12COREJohn Camelon10-125/+403
Added preliminary keyword support into IASTCompletionNode::getKeywords(). Refactored parser to put keyword string literals in one utility class. TESTS Updated testBaseCase_SimpleDeclaration() for keyword assertions.
2003-12-12fixed junit test failureDavid Inglis1-7/+9
2003-12-12COREJohn Camelon34-463/+816
Added OffsetLimitReachedException and restructured Parser exceptions. Continued support for code assist/selection search parser. Ensured all source in parser/ have copyright notices. TESTS Expanded ContextualParseTest::testBaseCase(). Updated tests to deal with new signatures/exceptions. UI Updated CompletionEngine to deal with new signatures/exceptions in parser.
2003-12-11Fixed https://bugs.eclipse.org/bugs/show_bug.cgi?id=48596David Inglis4-0/+43
2003-12-11updated.Alain Magloire2-0/+12
2003-12-11New tests for the CPathEntry.Alain Magloire1-0/+168
2003-12-11call super() in the constructor.Alain Magloire1-0/+2
2003-12-10updated.Alain Magloire1-0/+8
2003-12-10quick fix to change the DocumentProvider, to theAlain Magloire1-0/+7
TextFileDocumentProvider to deal with external files
2003-12-10Patch for Andrew Niefer. John Camelon4-4/+12
UI: fix bug 43932 Search: Wrong icons for context search in Outline View fix bug 48020 Duplicate Mnemonics in Search Dialog
2003-12-10Patch for Andrew Niefer.John Camelon8-35/+421
2003-12-09Content Assist workHoda Amer20-330/+438
2003-12-09Fixed compile error in CCompletionProcessorJohn Camelon1-1/+8
2003-12-09COREJohn Camelon16-882/+1297
Fixed Bug 47234 : new ParserMode required for a better CModel Updated IASTCompletionNode to include a scope as well as a context. Begun parser updates to support code assist & selection search. TESTS Added ContextualParseTest.java and some test cases.
2003-12-05 Broke the Parser up into separate classes per ParserMode.John Camelon5-29/+124
2003-12-05Removed unnecessary import.John Camelon1-1/+0
2003-12-05Patch for Alain Magloire:Doug Schaefer1-1/+1
- Fix to fragment xml version dependencies.
2003-12-05Change the version to reflect the one in the head.Alain Magloire4-4/+4
2003-12-04COREJohn Camelon14-57/+173
Removed some warnings. Fixed Bug 39678 : Scanner doesn't support concatenation of different-type string literals (GCC) Refactored ScannerContext to use constructors rather than initializers. Refactored IScannerContext to use enumeration-esque kinds. Added code assist/selection search support to Scanner. TESTS Removed some warnings. Moved testBug39678() from ASTFailedTests to QuickParseASTTests.
2003-12-04fixed bug # 48063David Inglis2-1/+6
2003-12-03Patch for Andrew Niefer. John Camelon13-114/+417
This patch changes the handling of ambiguities during prefix lookup. It also addresses problems in the symbol table to do with qualified lookup. Fixing these revealed problems caused by the CompleteParseASTFactory not always using the correct lookup functions. So the factory has been modified to call the appropriate lookups. The following tests have been created: FailedCompleteParseASTTest.testBug47926 CompleteParseASTTest.testQualifiedLookup ParserSymbolTableTest.testPrefixLookup_Ambiguities ParserSymbolTableTest.testQualifiedUnqualifiedLookup FunctionMethodPatternTests.testLookupForDefinition
2003-12-03Content Assist workHoda Amer20-469/+791
2003-11-28Patch for Andrew NieferJohn Camelon4-1/+26
CompleteParseASTFactory should use the symbol table's elaboratedLookup instead of qualifiedLookup when it encounters an elaborated type specifier. Core: change createElaboratedTypeSpecifier to call IContainerSymbol.elaboratedLookup Core.tests add CompleteParseASTTest.testBug47624
2003-11-28Patch for Andrew Niefer. John Camelon6-219/+535
Core: In prefix lookup, the lookup does not stop when a symbol is found, also abiguity resolution is modified. Add IContainerSymbol.prefixLookup (signature subject to change) Add ParserSymbolTable.LookupMode, an enum with 2 values: NORMAL, PREFIX In prefix mode, the lookup does not stop when a symbol is found. Tests: ParserSymbolTableTest.testBug46882 ParserSymbolTableTest.testPrefixLookup_Unqualified ParserSymbolTableTest.testPrefixLookup_Qualified ParserSymbolTableTest.testPrefixLookup_Inheritance
2003-11-27New Content Assist frameworkHoda Amer1-13/+0
2003-11-27New Content Assist frameworkHoda Amer15-222/+1048
2003-11-25Upversioned the plugins, etc to 2.0.0.Doug Schaefer16-59/+55
Made sure the jar files got included in the zips.
2003-11-24Upgrade to Eclipse 3.0. Includes:Doug Schaefer35-365/+91
- upgrade plugin.xml files - use PDE containers - apply Eclipse 3.0 porting items, in particular openEditor and gotoMarker - remove TestWorkbenches from test plugins

Back to the top