summaryrefslogtreecommitdiff
path: root/src/shared/cplusplus
Commit message (Collapse)AuthorAgeFilesLines
* Improved parsing of ambiguous statements.Roberto Raggi2009-10-192-12/+96
| | | | Done with Erik Verbruggen
* Fix for invalid parsing of "(a)[b]", including test cases.Erik Verbruggen2009-10-191-9/+29
|
* Check the scope of class and fwd-class declarationsRoberto Raggi2009-10-132-0/+10
|
* Improved support for private classes.Roberto Raggi2009-10-122-0/+16
|
* Removed deprecated PrettyPrinter. We need a way to generate the pretty ↵Roberto Raggi2009-10-093-1313/+2
| | | | printer from the C++ parser.
* Removed the MacroResolverRoberto Raggi2009-10-075-44/+1
| | | | Unfortunately, the MacroResolver does not scale and we get pretty bad performances when parsing big projects.
* Check ctor-initializers.Roberto Raggi2009-10-062-0/+8
|
* Fixed possible null-pointer dereference.Erik Verbruggen2009-10-051-2/+5
|
* Added protocol & class definedness checks, and added property attribute checks.Erik Verbruggen2009-10-0516-36/+430
|
* Implemented a simple(fast?) strategy to resolve macro references.Roberto Raggi2009-09-301-0/+4
|
* Introduced MacroResolver.Roberto Raggi2009-09-305-1/+41
|
* Delay the parsing of the document.Roberto Raggi2009-09-301-0/+2
|
* FullySpecifiedType::simplified() strips references from the type.Roberto Raggi2009-09-302-0/+10
|
* Introduced T_CPP_COMMENT and T_CPP_DOXY_COMMENT to handle C++-style comments ↵Roberto Raggi2009-09-293-2/+6
| | | | | | and improved CPPEditor::isInComment to handle the newly introduced tokens. As side effect,this change should fix the regression we introduced in the "automagically" quote/brace insertion.
* Merge branch 'master' of git@scm.dev.nokia.troll.no:creator/mainlineErik Verbruggen2009-09-284-0/+14
|\
| * Added the `isVirtual' attribute to Function.Roberto Raggi2009-09-254-0/+14
| |
* | Added type declarations for forward declared ObjC protocols and classes.Erik Verbruggen2009-09-285-8/+91
|/
* Removed Scope::addUse()Roberto Raggi2009-09-233-56/+12
|
* Introduced LiteralTable::findLiteral() and Control::findIdentifier()Roberto Raggi2009-09-233-1/+20
|
* Wee little cleanup.Erik Verbruggen2009-09-211-5/+5
|
* Introduced CPlusPlus::TemplateArguments and fixed a possible mem-leak when ↵Roberto Raggi2009-08-267-67/+81
| | | | using template members.
* long live the kinghjk2009-08-1471-71/+71
|
* Parsing fix for casts in ObjC message expressions.Erik Verbruggen2009-08-101-1/+6
|
* Parser fix for ObjC methods.Erik Verbruggen2009-08-061-4/+6
|
* Fixed semantic checks for Objective-C methods and fast-enumeration.Erik Verbruggen2009-08-0515-28/+257
|
* Cleaned the ObjC AST up.Erik Verbruggen2009-08-0515-424/+155
|
* The parser needs to a valid AST when the parsing method returns `true'.Roberto Raggi2009-08-051-6/+3
|
* Merged ObjCMethodDefinitionAST into ObjCMethodDeclarationAST.Erik Verbruggen2009-08-049-89/+12
|
* Stop scanning string literals when the current character is a newline.Roberto Raggi2009-08-041-1/+4
|
* Check for 0x0 accessRoberto Raggi2009-08-041-1/+1
|
* Compile the C++ parser library with Sun CC 5.9.Thiago Macieira2009-08-0319-274/+288
| | | | | | | | | | | | Things you mustn't do: 1) end an enum with a comma 2) #include <cxxxx> and not use std:: 3) use anonymous structures All three things are invalid C++. Anonymous structures inside anonymous unions are allowed by GCC, but that doesn't mean it's valid.
* Regenerated ASTVisit.cppRoberto Raggi2009-08-031-100/+70
|
* Added @synchronized parsing for Objective-C.Erik Verbruggen2009-07-318-1/+90
|
* Added Semantic checks for ObjC methods.Erik Verbruggen2009-07-3119-35/+257
|
* Added semantic checks for method declarations.Erik Verbruggen2009-07-319-9/+83
|
* Another fix for ObjC fast-enum parsing.Erik Verbruggen2009-07-292-5/+22
|
* Merge branch 'master' of git@scm.dev.nokia.troll.no:creator/mainlineErik Verbruggen2009-07-291-1/+1
|\
| * Fixed a typo in foreach parsing, which stored the initializer in theErik Verbruggen2009-07-291-1/+1
| | | | | | | | expression, which subsequently got overwritten by the (real) expression.
* | Fix for ObjC fast-enumeration parsing.Erik Verbruggen2009-07-295-30/+60
|/
* Improved ObjC parsing, and added semantic checks.Erik Verbruggen2009-07-2827-156/+1180
|
* Fixes for the ObjC AST. Now it should be complete.Erik Verbruggen2009-07-208-31/+183
|
* Added more AST for ObjC.Erik Verbruggen2009-07-208-56/+583
|
* Added ObjC method prototypes to the AST.Erik Verbruggen2009-07-168-28/+233
|
* Fixed crasher (infinite looping) for ObjC attributes.Erik Verbruggen2009-07-161-2/+4
|
* Added ObjC properties to the AST.Erik Verbruggen2009-07-168-93/+280
|
* Added ObjC @interface and @implementation member declarations.Erik Verbruggen2009-07-168-18/+201
|
* Added ObjC encode expressions.Erik Verbruggen2009-07-168-16/+138
|
* Added ObjC protocol expressions.Erik Verbruggen2009-07-167-6/+69
|
* Added varargs parsing for ObjC send_msg arguments.Erik Verbruggen2009-07-162-23/+51
|
* AST additions for ObjC send_msg.Erik Verbruggen2009-07-158-13/+145
|