index
:
emscripten-fastcomp-clang
master
emscripten clang
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Parse
/
ParseExprCXX.cpp
Age
Commit message (
Expand
)
Author
2008-12-09
Kick out the proof-of-concept ASTOwner and replace it with ASTOwningResult
Sebastian Redl
2008-12-09
Consistently use smart pointers for stmt and expr nodes in parser local varia...
Sebastian Redl
2008-12-08
fix typo.
Zhongxing Xu
2008-12-02
Add better comments to ::new parsing. Thanks to Doug for the review.
Sebastian Redl
2008-12-02
Make the parser handle ::new and ::delete correctly.
Sebastian Redl
2008-12-02
Handle new by passing the Declaration to the Action, not a processed type.
Sebastian Redl
2008-11-26
Implement some suggestions by Daniel:
Argyrios Kyrtzidis
2008-11-25
Use RAII objects to ensure proper destruction of expression and statement AST...
Sebastian Redl
2008-11-23
make the 'to match this' diagnostic a note.
Chris Lattner
2008-11-21
Implementation of new and delete parsing and sema.
Sebastian Redl
2008-11-19
Some tweaks suggested by Argiris
Douglas Gregor
2008-11-18
Extend DeclarationName to support C++ overloaded operators, e.g.,
Douglas Gregor
2008-11-18
Change a couple of the Parser::Diag methods to return DiagnosticInfo
Chris Lattner
2008-11-17
Updated IdentifierResolver to deal with DeclarationNames. The names of
Douglas Gregor
2008-11-17
Some cleanups for C++ operator overloading
Douglas Gregor
2008-11-11
Implement C++ 'typeid' parsing and sema.
Sebastian Redl
2008-11-10
Some cleanups to the declaration/checking of overloaded operators in C++. Tha...
Douglas Gregor
2008-11-08
Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse...
Argyrios Kyrtzidis
2008-11-08
Silence a gcc warning.
Daniel Dunbar
2008-11-07
Parsing, ASTs, and semantic analysis for the declaration of conversion
Douglas Gregor
2008-11-07
Assert that Parser::MaybeParseOperatorFunctionId is called when token is kw_o...
Argyrios Kyrtzidis
2008-11-06
Parsing, ASTs, and semantic analysis for the declaration of overloaded
Douglas Gregor
2008-10-27
Refactor the expression class hierarchy for casts. Most importantly:
Douglas Gregor
2008-10-05
Disambiguate between a declaration or expression for the 'condition' part of ...
Argyrios Kyrtzidis
2008-09-09
Implement parser support for the 'condition' part of C++ selection-statements...
Argyrios Kyrtzidis
2008-08-22
Add support for C++'s "type-specifier ( expression-list )" expression:
Argyrios Kyrtzidis
2008-08-16
Move handling of postfix-expression suffixes out of ParseCXXThis and into Par...
Argyrios Kyrtzidis
2008-06-24
Add parsing support for C++ classes.
Argyrios Kyrtzidis
2008-04-06
minor simplification
Chris Lattner
2008-04-06
finish up throw parsing.
Chris Lattner
2008-03-15
Make a major restructuring of the clang tree: introduce a top-level
Chris Lattner