ImplicitCastExpr *ASTMaker::makeImplicitCast(const Expr *Arg, QualType Ty,
CastKind CK) {
return ImplicitCastExpr::Create(C, Ty,
- /* CastKind= */ CK,
- /* Expr= */ const_cast<Expr *>(Arg),
- /* CXXCastPath= */ nullptr,
- /* ExprValueKind= */ VK_RValue);
+ /* CastKind=*/ CK,
+ /* Expr=*/ const_cast<Expr *>(Arg),
+ /* CXXCastPath=*/ nullptr,
+ /* ExprValueKind=*/ VK_RValue);
}
Expr *ASTMaker::makeIntegralCast(const Expr *Arg, QualType Ty) {
C, base, IsArrow, SourceLocation(), NestedNameSpecifierLoc(),
SourceLocation(), MemberDecl, FoundDecl,
DeclarationNameInfo(MemberDecl->getDeclName(), SourceLocation()),
- /* TemplateArgumentListInfo= */ nullptr, MemberDecl->getType(), ValueKind,
+ /* TemplateArgumentListInfo=*/ nullptr, MemberDecl->getType(), ValueKind,
OK_Ordinary);
}
CXXBasePaths Paths(
/* FindAmbiguities=*/false,
/* RecordPaths=*/false,
- /* DetectVirtual= */ false);
+ /* DetectVirtual=*/ false);
const IdentifierInfo &II = C.Idents.get(Name);
DeclarationName DeclName = C.DeclarationNames.getIdentifier(&II);
assert(callOperatorDecl != nullptr);
DeclRefExpr *callOperatorDeclRef =
- DeclRefExpr::Create(/* Ctx = */ C,
- /* QualifierLoc = */ NestedNameSpecifierLoc(),
- /* TemplateKWLoc = */ SourceLocation(),
+ DeclRefExpr::Create(/* Ctx =*/ C,
+ /* QualifierLoc =*/ NestedNameSpecifierLoc(),
+ /* TemplateKWLoc =*/ SourceLocation(),
const_cast<FunctionDecl *>(callOperatorDecl),
- /* RefersToEnclosingVariableOrCapture= */ false,
- /* NameLoc = */ SourceLocation(),
- /* T = */ callOperatorDecl->getType(),
- /* VK = */ VK_LValue);
+ /* RefersToEnclosingVariableOrCapture=*/ false,
+ /* NameLoc =*/ SourceLocation(),
+ /* T =*/ callOperatorDecl->getType(),
+ /* VK =*/ VK_LValue);
return new (C)
CXXOperatorCallExpr(/*AstContext=*/C, OO_Call, callOperatorDeclRef,
// Lambda requires callback itself inserted as a first parameter.
CallArgs.push_back(
M.makeDeclRefExpr(Callback,
- /* RefersToEnclosingVariableOrCapture= */ true));
+ /* RefersToEnclosingVariableOrCapture=*/ true));
CallbackFunctionType = CallbackRecordDecl->getLambdaCallOperator()
->getType()
->getAs<FunctionProtoType>();
// Negation predicate.
UnaryOperator *FlagCheck = new (C) UnaryOperator(
- /* input= */
+ /* input=*/
M.makeImplicitCast(M.makeLvalueToRvalue(Deref, DerefType), DerefType,
CK_IntegralToBoolean),
- /* opc= */ UO_LNot,
- /* QualType= */ C.IntTy,
- /* ExprValueKind= */ VK_RValue,
- /* ExprObjectKind= */ OK_Ordinary, SourceLocation());
+ /* opc=*/ UO_LNot,
+ /* QualType=*/ C.IntTy,
+ /* ExprValueKind=*/ VK_RValue,
+ /* ExprObjectKind=*/ OK_Ordinary, SourceLocation());
// Create assignment.
BinaryOperator *FlagAssignment = M.makeAssignment(
IfStmt *Out = new (C)
IfStmt(C, SourceLocation(),
- /* IsConstexpr= */ false,
- /* init= */ nullptr,
- /* var= */ nullptr,
- /* cond= */ FlagCheck,
- /* then= */ M.makeCompound({CallbackCall, FlagAssignment}));
+ /* IsConstexpr=*/ false,
+ /* init=*/ nullptr,
+ /* var=*/ nullptr,
+ /* cond=*/ FlagCheck,
+ /* then=*/ M.makeCompound({CallbackCall, FlagAssignment}));
return Out;
}
PredicateTy);
UnaryOperator *UO = new (C) UnaryOperator(
- /* input= */ LValToRval,
- /* opc= */ UO_LNot,
- /* QualType= */ C.IntTy,
- /* ExprValueKind= */ VK_RValue,
- /* ExprObjectKind= */ OK_Ordinary, SourceLocation());
+ /* input=*/ LValToRval,
+ /* opc=*/ UO_LNot,
+ /* QualType=*/ C.IntTy,
+ /* ExprValueKind=*/ VK_RValue,
+ /* ExprObjectKind=*/ OK_Ordinary, SourceLocation());
// (5) Create the 'if' statement.
IfStmt *If = new (C) IfStmt(C, SourceLocation(),
- /* IsConstexpr= */ false,
- /* init= */ nullptr,
- /* var= */ nullptr,
- /* cond= */ UO,
- /* then= */ CS);
+ /* IsConstexpr=*/ false,
+ /* init=*/ nullptr,
+ /* var=*/ nullptr,
+ /* cond=*/ UO,
+ /* then=*/ CS);
return If;
}