File indexing completed on 2026-05-10 08:37:05
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014 #ifndef LLVM_CLANG_SEMA_SEMAPSEUDOOBJECT_H
0015 #define LLVM_CLANG_SEMA_SEMAPSEUDOOBJECT_H
0016
0017 #include "clang/AST/ASTFwd.h"
0018 #include "clang/AST/OperationKinds.h"
0019 #include "clang/Basic/SourceLocation.h"
0020 #include "clang/Sema/Ownership.h"
0021 #include "clang/Sema/SemaBase.h"
0022
0023 namespace clang {
0024 class Scope;
0025
0026 class SemaPseudoObject : public SemaBase {
0027 public:
0028 SemaPseudoObject(Sema &S);
0029
0030 ExprResult checkIncDec(Scope *S, SourceLocation OpLoc,
0031 UnaryOperatorKind Opcode, Expr *Op);
0032 ExprResult checkAssignment(Scope *S, SourceLocation OpLoc,
0033 BinaryOperatorKind Opcode, Expr *LHS, Expr *RHS);
0034 ExprResult checkRValue(Expr *E);
0035 Expr *recreateSyntacticForm(PseudoObjectExpr *E);
0036 };
0037
0038 }
0039
0040 #endif