Commit Graph

373 Commits

Author SHA1 Message Date
Roberto Raggi
bbdb7d9742 Fixed parsing ambiguity when parsing dependant template types. 2010-03-29 14:10:42 +02:00
Roberto Raggi
f5c9a158c1 Use the start of the template-argument as to key for template-arguments cache. 2010-03-26 11:27:22 +01:00
Roberto Raggi
fe261bc256 Parse C++ 0x argument packs. 2010-03-25 12:16:18 +01:00
Roberto Raggi
3c8d12562e Recognize C++0x sizeof... expressions. 2010-03-25 10:44:42 +01:00
Roberto Raggi
ddcc40d0fc Accepts `...' when parsing declarator-ids in C++0x. 2010-03-25 10:44:42 +01:00
Roberto Raggi
86c2367c26 In C++ 0x auto is a type specifier. 2010-03-24 17:19:54 +01:00
Roberto Raggi
c05e11b165 Set and propagate the `auto' specifier. 2010-03-24 15:06:50 +01:00
Roberto Raggi
cf125618af Accepts trailing return types. 2010-03-24 14:56:45 +01:00
Roberto Raggi
4e50dfe330 Require a T_EQUAL when parsing conditions. 2010-03-24 13:56:34 +01:00
Roberto Raggi
a6b21aac50 Recognize C++0x decltype. 2010-03-24 13:49:02 +01:00
Roberto Raggi
8329d7db94 Recognize C++0x lambda expressions. 2010-03-24 13:49:02 +01:00
Roberto Raggi
0eddf5c0ad Accept C++0x initializers. 2010-03-23 14:17:33 +01:00
Erik Verbruggen
9efa5d940a Added __attribute__ visiting, and storing of the deprecated attr. 2010-03-23 14:15:45 +01:00
Erik Verbruggen
989681a0e9 Added attribute parsing for elaborate-type-specifiers. 2010-03-23 14:15:45 +01:00
Erik Verbruggen
7a3fbf120a Added attributes to the elaborate-type-specifier AST node. 2010-03-23 14:15:45 +01:00
Erik Verbruggen
58f5b02dc0 Added deprecated identifier. 2010-03-23 14:15:44 +01:00
Roberto Raggi
189ec382ef Recognize C++0x type-id-list. 2010-03-23 14:13:23 +01:00
Roberto Raggi
b4542eff3c Renamed Parser::isCxxOxEnabled(). 2010-03-23 14:13:22 +01:00
Roberto Raggi
87d28e1814 Recognize C++0x template arguments. 2010-03-23 14:13:22 +01:00
Roberto Raggi
eebf498aae Parse C++0x type-parameters. 2010-03-23 14:13:22 +01:00
Roberto Raggi
ae71514360 Parse C++0x base-specifier-list. 2010-03-23 14:13:22 +01:00
Roberto Raggi
8b625a867c Parse C++0x mem-initializer-list. 2010-03-23 14:13:21 +01:00
Roberto Raggi
071f8ae3b5 Warn for invalid pointer to references. 2010-03-23 12:29:08 +01:00
Roberto Raggi
8141f496ff Warn for invalid references. 2010-03-23 12:27:09 +01:00
Roberto Raggi
4b8d597196 Recognize C++0x rvalue references. 2010-03-23 12:12:07 +01:00
Roberto Raggi
464f797f2f Don't check the compound statement terminator when parsing.
The check should be done in the semantic phase.
2010-03-23 10:25:43 +01:00
Roberto Raggi
6f80219d3e Renamed the CompoundExpressionAST::compoundStatement. 2010-03-23 10:25:43 +01:00
Roberto Raggi
069091eece Rewind the memory pool only after parsing a toplevel expression statements. 2010-03-23 10:18:17 +01:00
Roberto Raggi
273a64bbeb Fixed possible leaks when processing friend template classes and template constructors. 2010-03-19 11:09:35 +01:00
Erik Verbruggen
f6d7927003 Got rid of the memset. 2010-03-18 16:06:29 +01:00
Erik Verbruggen
bfa1693629 Regenerated the AST, now including constructors. 2010-03-18 16:06:15 +01:00
Roberto Raggi
61a504c427 Ensure that the memory pool can be reused after a rewind and get rid of the segmented array. 2010-03-18 15:23:13 +01:00
Roberto Raggi
2d45bb8070 Parse and create AST nodes for the Q_MOC_RUN extensions. 2010-03-17 14:37:55 +01:00
Erik Verbruggen
b4d72a78db Added parser support for Q_INTERFACES. 2010-03-17 10:30:17 +01:00
Erik Verbruggen
61132f260c Fixed Q_ENUMS/Q_FLAGS parsing of enum names. 2010-03-17 10:30:17 +01:00
Roberto Raggi
4f03a8be53 Don't skip closing braces and Qt function specifiers. 2010-03-16 15:18:59 +01:00
Erik Verbruggen
b737fb861d Made Q_PROPERTY a valid declaration to restart parsing when recovering from an error. 2010-03-12 11:32:42 +01:00
hjk
9595504bda Long live the king! 2010-03-05 11:28:13 +01:00
Roberto Raggi
768d6031a6 Process the enumerator initializers. 2010-03-03 17:36:18 +01:00
Erik Verbruggen
cefdb3da30 Fixed parsing of properties whose name is a C++ keyword.
Reviewed-by: Roberto Raggi
2010-03-03 16:46:14 +01:00
Roberto Raggi
ca34e0c043 Compile with gcc -pedantic. 2010-02-25 12:39:39 +01:00
Erik Verbruggen
e609e9a701 Simplified ObjC selectors in the AST. 2010-02-23 17:43:52 +01:00
Erik Verbruggen
72c3ba791e Fixed pre-processor handling for Q_PROPERTY, Q_ENUMS and Q_FLAGS. 2010-02-22 18:00:26 +01:00
Erik Verbruggen
d215737df8 Added semantic checks for Q_PROPERTY declarations. 2010-02-22 09:27:44 +01:00
Erik Verbruggen
21fdc2d06a Replaced usages of concrete type SimpleNameAST with the abstract NameAST. 2010-02-22 09:27:44 +01:00
Erik Verbruggen
c79f25d5a6 Fixed Q_PROPERTY parsing to handle all possible cases. 2010-02-16 17:04:26 +01:00
Erik Verbruggen
618173e067 Fixed Q_ENUMS/Q_FLAGS parsing to handle namespaces. 2010-02-15 17:13:30 +01:00
Erik Verbruggen
8de6ccc775 Revert "Split Objective-C keyword parsing to handle the '@' separately."
This reverts commit 2a59d2ae0c.
2010-02-15 12:24:31 +01:00
Erik Verbruggen
a0071f1ce9 Revert "Added Objective-C @try block parsing."
This reverts commit f4163b8ba0.
2010-02-15 12:24:31 +01:00
Erik Verbruggen
f4163b8ba0 Added Objective-C @try block parsing. 2010-02-15 09:27:01 +01:00