This revision was automatically updated to reflect the committed changes.
Closed by commit rG28c2bdf18f50: [AST] Record SourceLocation for TypoExpr.
(authored by hokein).
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81008/new/
https://reviews.llvm.
hokein added inline comments.
Comment at: clang/include/clang/AST/Expr.h:6158
public:
- TypoExpr(QualType T) : Expr(TypoExprClass, T, VK_LValue, OK_Ordinary) {
+ TypoExpr(QualType T, SourceLocation Start, SourceLocation End)
+ : Expr(TypoExprClass, T, VK_LValue, OK_Ordina
hokein updated this revision to Diff 268068.
hokein marked an inline comment as done.
hokein added a comment.
use a single location.
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D81008/new/
https://reviews.llvm.org/D81008
Files:
clang/include/cl
sammccall added inline comments.
Comment at: clang/include/clang/AST/Expr.h:6158
public:
- TypoExpr(QualType T) : Expr(TypoExprClass, T, VK_LValue, OK_Ordinary) {
+ TypoExpr(QualType T, SourceLocation Start, SourceLocation End)
+ : Expr(TypoExprClass, T, VK_LValue, OK_Ord
hokein created this revision.
hokein added a reviewer: sammccall.
Herald added a project: clang.
Repository:
rG LLVM Github Monorepo
https://reviews.llvm.org/D81008
Files:
clang/include/clang/AST/Expr.h
clang/include/clang/Sema/Sema.h
clang/lib/Sema/SemaExprCXX.cpp
clang/lib/Sema/SemaL