From d69fbf90b408c3b6a2aee66925916f3a97482c7c Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Thu, 4 Jun 2020 19:43:16 +0300 Subject: [PATCH] Fix JSON deserialization in coverage tests --- .../kotlin/org/jetbrains/kotlin/LlvmCovReport.kt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/build-tools/src/main/kotlin/org/jetbrains/kotlin/LlvmCovReport.kt b/build-tools/src/main/kotlin/org/jetbrains/kotlin/LlvmCovReport.kt index 15f11652c0a..04c3e7d8064 100644 --- a/build-tools/src/main/kotlin/org/jetbrains/kotlin/LlvmCovReport.kt +++ b/build-tools/src/main/kotlin/org/jetbrains/kotlin/LlvmCovReport.kt @@ -5,17 +5,17 @@ import com.google.gson.annotations.* data class LlvmCovReportFunction( - val name: String, - val count: Int, - val regions: List>, - val filenames: List + @Expose val name: String, + @Expose val count: Int, + @Expose val regions: List>, + @Expose val filenames: List ) data class LlvmCovReportSummary( - val lines: LlvmCovReportStatistics, - val functions: LlvmCovReportStatistics, - val instantiations: LlvmCovReportStatistics, - val regions: LlvmCovReportStatistics + @Expose val lines: LlvmCovReportStatistics, + @Expose val functions: LlvmCovReportStatistics, + @Expose val instantiations: LlvmCovReportStatistics, + @Expose val regions: LlvmCovReportStatistics )