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
/
ParseTentative.cpp
Age
Commit message (
Expand
)
Author
2009-11-21
Added rudimentary C++0x attribute support.
Sean Hunt
2009-11-05
Parse C++0x constexpr. Test case follows when this does something useful.
Sebastian Redl
2009-09-09
Remove tabs, and whitespace cleanups.
Mike Stump
2009-08-25
Improve support for out-of-line definitions of nested templates and
Douglas Gregor
2009-07-21
Consider nested-names as part of the declarator when resolving an ambiguous s...
Argyrios Kyrtzidis
2009-07-14
Basic support for C++0x unicode types. Support for literals will follow in a...
Alisdair Meredith
2009-06-24
Parse the C++0x decltype specifier.
Anders Carlsson
2009-06-08
Add more parser support for Microsoft extensions.
Eli Friedman
2009-05-22
Handle correctly a very ugly part of the C++ syntax. We cannot disambiguate b...
Argyrios Kyrtzidis
2009-03-27
Initial implementation of parsing, semantic analysis, and template
Douglas Gregor
2009-03-27
Fix rdar://6719156 - clang should emit a better error when blocks are disable...
Chris Lattner
2009-03-11
Add parser support for static_assert.
Anders Carlsson
2009-02-10
Teach the type-id/expression disambiguator about different
Douglas Gregor
2009-01-29
move library-specific diagnostic headers into library private dirs. Reduce
Chris Lattner
2009-01-27
Split the single monolithic DiagnosticKinds.def file into one
Chris Lattner
2009-01-24
Make tentative parsing of pointer-to-member decls work, and fix other stuff p...
Sebastian Redl
2009-01-06
Another tweak to handle the MS extensions (<rdar://problem/5956221>).
Steve Naroff
2009-01-06
Fix <rdar://problem/5956221> clang ObjC rewriter: Microsoft-specific __fastca...
Steve Naroff
2009-01-06
rename tok::annot_qualtypename -> tok::annot_typename, which is both
Chris Lattner
2009-01-04
push the call in isCXXDeclarationSpecifier to TryAnnotateTypeOrScopeToken
Chris Lattner
2008-12-17
Removed the warning
Douglas Gregor
2008-11-22
Teach tentative parsing to handle block pointers (rdar://6394309)
Chris Lattner
2008-11-18
remove the last couple obsolete forms of Parser::Diag.
Chris Lattner
2008-11-08
Implement support for C++ nested-name-specifiers ('foo::bar::x') in the Parse...
Argyrios Kyrtzidis
2008-10-17
Just do a diagIfAmbiguous -> warnIfAmbiguous rename.
Argyrios Kyrtzidis
2008-10-15
Issue a warning when there's an ambiguous function declarator (that could be ...
Argyrios Kyrtzidis
2008-10-05
A tiny optimization; use isCXXFunctionDeclarator only when it's appropriate.
Argyrios Kyrtzidis
2008-10-05
Add some text from the C++ standard and additional ambiguity resolution tests.
Argyrios Kyrtzidis
2008-10-05
Handle ambiguities between expressions and type-ids that occur inside parenth...
Argyrios Kyrtzidis
2008-10-05
Found a subtle bug caused by an implicit enum-to-bool conversion (of the Tent...
Argyrios Kyrtzidis
2008-10-05
Fix Parser::isCXXConditionDeclaration to properly resolve declarations.
Argyrios Kyrtzidis
2008-10-05
Disambiguate between a declaration or expression for the 'condition' part of ...
Argyrios Kyrtzidis
2008-10-05
Consider GNU attributes when doing ambiguity resolution.
Argyrios Kyrtzidis
2008-10-05
Resolve ambiguous C++ statements (C++ 6.8p1).
Argyrios Kyrtzidis