<div dir="auto"><div><div class="gmail_quote"><div dir="ltr">On Sat, 1 Dec 2018, 22:16 Alexey Sidorin via cfe-dev <<a href="mailto:cfe-dev@lists.llvm.org">cfe-dev@lists.llvm.org</a> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Kihong,<br>
The problem in your particular case is that the begin location of <br>
integer literal is reported as the end location (should we fix it in AST)?<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">No, that's just how clang represents source ranges: source ranges are inclusive and source locations are the locations of tokens. So the start and end location of an integer literal should be the same, and the user needs to find the end of the last token themselves.</div><div dir="auto"><br></div><div dir="auto"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
As a workaround, you can try to use Lexer::getLocForEndOfToken() to get <br>
the token end location for the location reported by getLocEnd().<br>
<br>
02.12.2018 8:36, Kihong Heo via cfe-dev пишет:<br>
> Hi all,<br>
><br>
> How can I get string representations of conditional expressions of IfStmt?<br>
> The problem is as follows:<br>
> For example;<br>
> =============<br>
> /* source code */<br>
> if( x < 10) …<br>
> =============<br>
><br>
> “IS->getCond()->getSourceRange()” represents only “x <“. It seems quite strange.<br>
><br>
> Thanks,<br>
> Kihong<br>
> _______________________________________________<br>
> cfe-dev mailing list<br>
> <a href="mailto:cfe-dev@lists.llvm.org" target="_blank" rel="noreferrer">cfe-dev@lists.llvm.org</a><br>
> <a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
<br>
<br>
_______________________________________________<br>
cfe-dev mailing list<br>
<a href="mailto:cfe-dev@lists.llvm.org" target="_blank" rel="noreferrer">cfe-dev@lists.llvm.org</a><br>
<a href="http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev" rel="noreferrer noreferrer" target="_blank">http://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-dev</a><br>
</blockquote></div></div></div>