<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in multistep-explicit-cast-json.cpp</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>6d8e5c96 - [NFC] Make file offsets a regex to handle CRLF</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp#6d8e5c96</link>
        <description>[NFC] Make file offsets a regex to handle CRLFNone of these tests are really intended to test the file offset as muchas to test the structure. Making the regex allows this test to workeven if the file is checked out with CRLF line endings.Reviewed By: aaron.ballmanDifferential Revision: https://reviews.llvm.org/D119362

            List of files:
            /llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp</description>
        <pubDate>Wed, 19 Jan 2022 23:55:20 +0000</pubDate>
        <dc:creator>Chris Bieneman &lt;cbieneman@microsoft.com&gt;</dc:creator>
    </item>
<item>
        <title>aef5d8fd - [clang] NFC: Rename rvalue to prvalue</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp#aef5d8fd</link>
        <description>[clang] NFC: Rename rvalue to prvalueThis renames the expression value categories from rvalue to prvalue,keeping nomenclature consistent with C++11 onwards.C++ has the most complicated taxonomy here, and every other languageonly uses a subset of it, so it&apos;s less confusing to use the C++ namesconsistently, and mentally remap to the C names when working on thatcontext (prvalue -&gt; rvalue, no xvalues, etc).Renames:* VK_RValue -&gt; VK_PRValue* Expr::isRValue -&gt; Expr::isPRValue* SK_QualificationConversionRValue -&gt; SK_QualificationConversionPRValue* JSON AST Dumper Expression nodes value category: &quot;rvalue&quot; -&gt; &quot;prvalue&quot;Signed-off-by: Matheus Izvekov &lt;mizvekov@gmail.com&gt;Reviewed By: rsmithDifferential Revision: https://reviews.llvm.org/D103720

            List of files:
            /llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp</description>
        <pubDate>Fri, 04 Jun 2021 21:15:23 +0000</pubDate>
        <dc:creator>Matheus Izvekov &lt;mizvekov@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>27c7a9b1 - Add more information to JSON AST dumping of source locations.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp#27c7a9b1</link>
        <description>Add more information to JSON AST dumping of source locations.This adds information about the offset within the source file to the given source location as well as information about the include file a location is from. These pieces of information allow for more efficient post-processing of JSON AST dumps.llvm-svn: 374921

            List of files:
            /llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp</description>
        <pubDate>Tue, 15 Oct 2019 17:30:19 +0000</pubDate>
        <dc:creator>Aaron Ballman &lt;aaron@aaronballman.com&gt;</dc:creator>
    </item>
<item>
        <title>d5e206ee - Add typedef declaration information to the JSON AST dump.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp#d5e206ee</link>
        <description>Add typedef declaration information to the JSON AST dump.When dumping a desugared QualType and the type is a type alias, also print out the id for the type alias declaration.llvm-svn: 367312

            List of files:
            /llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp</description>
        <pubDate>Tue, 30 Jul 2019 13:42:19 +0000</pubDate>
        <dc:creator>Aaron Ballman &lt;aaron@aaronballman.com&gt;</dc:creator>
    </item>
<item>
        <title>a612e34c - Augment location information when dumping the AST to JSON.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp#a612e34c</link>
        <description>Augment location information when dumping the AST to JSON.Rather than create JSON objects for source locations and ranges, we instead stream them out directly. This allows us to elide duplicate information (without JSON field reordering causing an issue) like file names and line numbers, similar to the text dump. This also adds token length information when dumping the source location.llvm-svn: 364226

            List of files:
            /llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp</description>
        <pubDate>Mon, 24 Jun 2019 20:07:11 +0000</pubDate>
        <dc:creator>Aaron Ballman &lt;aaron@aaronballman.com&gt;</dc:creator>
    </item>
<item>
        <title>60294f9d - Add an automated note to files produced by gen_ast_dump_json_test.py.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp#60294f9d</link>
        <description>Add an automated note to files produced by gen_ast_dump_json_test.py.This also details what filters, if any, were used to generate the test output. Updates all the current JSON testing files to include the automated note.llvm-svn: 364055

            List of files:
            /llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp</description>
        <pubDate>Fri, 21 Jun 2019 14:37:39 +0000</pubDate>
        <dc:creator>Aaron Ballman &lt;aaron@aaronballman.com&gt;</dc:creator>
    </item>
<item>
        <title>20fe9e54 - Add test cases for explicit casts when dumping the AST to JSON; NFC.</title>
        <link>http://172.16.0.5:8080/history/llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp#20fe9e54</link>
        <description>Add test cases for explicit casts when dumping the AST to JSON; NFC.llvm-svn: 363932

            List of files:
            /llvm-project-15.0.7/clang/test/AST/multistep-explicit-cast-json.cpp</description>
        <pubDate>Thu, 20 Jun 2019 15:04:24 +0000</pubDate>
        <dc:creator>Aaron Ballman &lt;aaron@aaronballman.com&gt;</dc:creator>
    </item>
</channel>
</rss>
