clang API Documentation
#include <SemaFixItUtils.h>
Public Types | |
typedef bool(* | TypeComparisonFuncTy )(const CanQualType FromTy, const CanQualType ToTy, Sema &S, SourceLocation Loc, ExprValueKind FromVK) |
Public Member Functions | |
ConversionFixItGenerator (TypeComparisonFuncTy Foo) | |
ConversionFixItGenerator () | |
void | setConversionChecker (TypeComparisonFuncTy Foo) |
Resets the default conversion checker method. | |
bool | tryToFixConversion (const Expr *FromExpr, const QualType FromQTy, const QualType ToQTy, Sema &S) |
If possible, generates and stores a fix for the given conversion. | |
void | clear () |
bool | isNull () |
Static Public Member Functions | |
static bool | compareTypesSimple (CanQualType From, CanQualType To, Sema &S, SourceLocation Loc, ExprValueKind FromVK) |
Performs a simple check to see if From type can be converted to To type. | |
Public Attributes | |
std::vector< FixItHint > | Hints |
The list of Hints generated so far. | |
unsigned | NumConversionsFixed |
OverloadFixItKind | Kind |
TypeComparisonFuncTy | CompareTypes |
The class facilities generation and storage of conversion FixIts. Hints for new conversions are added using TryToFixConversion method. The default type conversion checker can be reset.
Definition at line 33 of file SemaFixItUtils.h.
typedef bool(* clang::ConversionFixItGenerator::TypeComparisonFuncTy)(const CanQualType FromTy, const CanQualType ToTy, Sema &S, SourceLocation Loc, ExprValueKind FromVK) |
Definition at line 52 of file SemaFixItUtils.h.
Definition at line 62 of file SemaFixItUtils.h.
Definition at line 66 of file SemaFixItUtils.h.
void clang::ConversionFixItGenerator::clear | ( | ) | [inline] |
Definition at line 80 of file SemaFixItUtils.h.
References Hints, and NumConversionsFixed.
Referenced by clang::OverloadCandidate::TryToFixBadConversion().
bool ConversionFixItGenerator::compareTypesSimple | ( | CanQualType | From, |
CanQualType | To, | ||
Sema & | S, | ||
SourceLocation | Loc, | ||
ExprValueKind | FromVK | ||
) | [static] |
Performs a simple check to see if From type can be converted to To type.
Definition at line 23 of file SemaFixItUtils.cpp.
References clang::Sema::Context, clang::ASTContext::getCanonicalType(), clang::CanQual< T >::getNonReferenceType(), clang::CanQual< T >::getUnqualifiedType(), clang::CanQual< T >::isAtLeastAsQualifiedAs(), and clang::Sema::IsDerivedFrom().
bool clang::ConversionFixItGenerator::isNull | ( | ) | [inline] |
Definition at line 85 of file SemaFixItUtils.h.
References NumConversionsFixed.
Referenced by clang::Sema::DiagnoseAssignmentResult().
void clang::ConversionFixItGenerator::setConversionChecker | ( | TypeComparisonFuncTy | Foo | ) | [inline] |
Resets the default conversion checker method.
Definition at line 71 of file SemaFixItUtils.h.
References CompareTypes.
Referenced by CompleteNonViableCandidate().
bool ConversionFixItGenerator::tryToFixConversion | ( | const Expr * | FromExpr, |
const QualType | FromQTy, | ||
const QualType | ToQTy, | ||
Sema & | S | ||
) |
If possible, generates and stores a fix for the given conversion.
Definition at line 51 of file SemaFixItUtils.cpp.
References CompareTypes, clang::Sema::Context, clang::FixItHint::CreateInsertion(), clang::FixItHint::CreateRemoval(), clang::SourceRange::getBegin(), clang::ASTContext::getCanonicalType(), clang::SourceRange::getEnd(), clang::Preprocessor::getLocForEndOfToken(), clang::Expr::getObjectKind(), clang::ASTContext::getPointerType(), clang::Stmt::getSourceRange(), clang::CharSourceRange::getTokenRange(), Hints, clang::Expr::IgnoreImpCasts(), clang::Expr::IgnoreParenCasts(), clang::Expr::isLValue(), clang::Expr::NPC_ValueDependentIsNotNull, NumConversionsFixed, clang::OFIK_Dereference, clang::OFIK_RemoveDereference, clang::OFIK_RemoveTakeAddress, clang::OFIK_TakeAddress, clang::OK_Ordinary, clang::Sema::PP, S, clang::UO_AddrOf, clang::UO_Deref, clang::VK_LValue, and clang::VK_RValue.
Referenced by clang::Sema::DiagnoseAssignmentResult(), and clang::OverloadCandidate::TryToFixBadConversion().
The type comparison function used to decide if expression FromExpr of type FromTy can be converted to ToTy. For example, one could check if an implicit conversion exists. Returns true if comparison exists.
Definition at line 60 of file SemaFixItUtils.h.
Referenced by setConversionChecker(), and tryToFixConversion().
std::vector<FixItHint> clang::ConversionFixItGenerator::Hints |
The list of Hints generated so far.
Definition at line 42 of file SemaFixItUtils.h.
Referenced by clear(), clang::Sema::DiagnoseAssignmentResult(), DiagnoseBadConversion(), and tryToFixConversion().
The type of fix applied. If multiple conversions are fixed, corresponds to the kid of the very first conversion.
Definition at line 50 of file SemaFixItUtils.h.
Referenced by clang::Sema::DiagnoseAssignmentResult(), and DiagnoseBadConversion().
The number of Conversions fixed. This can be different from the size of the Hints vector since we allow multiple FixIts per conversion.
Definition at line 46 of file SemaFixItUtils.h.
Referenced by clear(), isNull(), and tryToFixConversion().