[PATCH] D70554: [libTooling] Add stencil combinators for nodes that may be pointers or values.
Yitzhak Mandelbaum via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Nov 22 07:09:18 PST 2019
ymandel marked 5 inline comments as done.
ymandel added a comment.
Thanks for the review!
================
Comment at: clang/include/clang/Tooling/Transformer/Stencil.h:96
+// Constructs an expression that idiomatically represents a value, taking into
+// account whether `ExprId` is a pointer or already a value.
+Stencil asValue(llvm::StringRef ExprId);
----------------
gribozavr2 wrote:
> Need more explanation to cover the cases when the expression is a pointer to a pointer (do we deref once or twice?), or a smart pointer (do we take care of that at all?)
>
> WDYT about calling it `maybeDeref()` or `derefIfPointer()`?
I went with maybe... Given that, I didn't elaborate on pointer-to-pointer case because it never claims to result in a value. WDYT?
also, I kind of like derefIfPointer better, but addressOfIfValue just seemed to clunky. So, went w/ maybe...
Repository:
rG LLVM Github Monorepo
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D70554/new/
https://reviews.llvm.org/D70554
More information about the cfe-commits
mailing list