summaryrefslogtreecommitdiff
path: root/test/SemaCXX/typo-correction.cpp
AgeCommit message (Expand)Author
2017-05-10Improve diagnosis of unknown template name.Richard Smith
2017-04-28[Sema] Avoid an invalid redefinition error that was presented forAlex Lorenz
2016-02-19Correct typos after acting on invalid subscript expressionsDavid Majnemer
2016-02-18[Parse] Make sure we don't forget to diagnose typos in exprsDavid Majnemer
2016-02-17Correct more typos in conditional expressionsDavid Majnemer
2015-12-29Teach typo correction to properly handle mapping declarations to theirRichard Smith
2015-09-30Don't correct non-class using declarations to class members.Kaelyn Takata
2015-03-29[lex] Provide a valid token when __has_include is found outside of a pp direc...Benjamin Kramer
2014-12-16Add a new flag, -fspell-checking-limit=<number> to control how many times we'...Nick Lewycky
2014-12-15Parse: Don't reorder tokens using ConsumeTokenDavid Majnemer
2014-11-20Wire up delayed typo correction to DiagnoseEmptyLookup and set upKaelyn Takata
2014-10-27Wire up LookupMemberExpr to use the new TypoExpr.Kaelyn Takata
2014-06-11Move TypoCorrection filtering into the TypoCorrectionConsumer and make it inc...Kaelyn Takata
2014-01-11Use the appropriate SourceLocation for the template backtrace when doingNick Lewycky
2013-12-14Revert "Don't require -re suffix on -verify directives with regexes."Alp Toker
2013-12-14Don't require -re suffix on -verify directives with regexes.Hans Wennborg
2013-12-11Change semantics of regex expectations in the diagnostic verifierHans Wennborg
2013-10-19Allow CorrectTypo to replace CXXScopeSpecifiers that refer to classes.Kaelyn Uhrain
2013-09-27Avoid the hard-coded limit on the number of typo corrections attempted.Kaelyn Uhrain
2013-07-08Attempt typo correction for function calls with the wrong number of arguments.Kaelyn Uhrain
2013-07-02Look for corrections in enclosing namespaces that require a global NestedName...Kaelyn Uhrain
2013-05-07When typo correction produces an overloaded result when looking up a member,Nick Lewycky
2013-04-03Give the default CorrectionCandidateCallback::ValidateCandidate someKaelyn Uhrain
2012-11-19When adding a NamedDecl to a correction, add the underlying Decl (viaKaelyn Uhrain
2012-08-21Better diagnostics for range-based for loops with bad range types.Sam Panzer
2012-08-18PR41111, PR5925, PR13210: Teach tentative parsing to annotate identifiers andRichard Smith
2012-06-29In Sema::ClassifyName, try to avoid nonsensical corrections toKaelyn Uhrain
2012-06-22Perform typo correction for base class specifiers.Kaelyn Uhrain
2012-06-08PR13051: Only suggest the 'template' and 'operator' keywords when performingRichard Smith
2012-06-01Don't allow multiple correction candidates that have the same identifierKaelyn Uhrain
2012-05-15Don't use the implicit int rule for error recovery in C++. Instead, try toRichard Smith
2012-04-03Remove more redundant lookups. Add a new "all_lookups_iterator" which providesNick Lewycky
2012-02-22Fix typo correction of template arguments to once again allow type names.Kaelyn Uhrain
2012-02-16Avoid infinite mutual recursion in DiagnoseInvalidRedeclaration.Kaelyn Uhrain
2012-01-25Allow typo correction to be disabled in BuildOverloadedCallExpr variant.Kaelyn Uhrain
2012-01-25Avoid correcting unknown identifiers to types where types aren't allowed.Kaelyn Uhrain
2012-01-25Add custom callback object for typo correction in BuildRecoveryCallExpr.Kaelyn Uhrain
2012-01-23In CorrectTypo, use the cached correction as a starting point instead.Kaelyn Uhrain
2012-01-18Convert SemaDecl.cpp to pass callback objects to CorrectTypo.Kaelyn Uhrain
2012-01-13Convert SemaTemplate*.cpp to pass a callback object to CorrectTypo.Kaelyn Uhrain
2012-01-13Convert SemaExprMember.cpp to pass a callback object to CorrectTypo,Kaelyn Uhrain
2012-01-12Convert SemaCXXScopeSpec.cpp to pass a callback object to CorrectTypo,Kaelyn Uhrain
2012-01-12Convert SemaInit.cpp to pass a callback object to CorrectTypo.Kaelyn Uhrain
2012-01-11Fix the caching in CorrectTypo so that other non-keyword identifiersKaelyn Uhrain
2012-01-11Add initial callback object support to Sema::CorrectTypo.Kaelyn Uhrain
2011-10-18Switch to the C++11 warning flags in tests. David Blaikie
2011-10-11Add an explanatory comment to test/SemaCXX/typo-correction.cppKaelyn Uhrain
2011-10-11Add typo correction for type names.Kaelyn Uhrain