Skip to content

Commit

Permalink
Reorganize GradleBuildTime entries to match actual structure used i…
Browse files Browse the repository at this point in the history
…n compiler

#KT-67473 Fixed

(cherry picked from commit 659e664)
  • Loading branch information
ivandev0 authored and qodana-bot committed Apr 30, 2024
1 parent 8bbf8dc commit 0872420
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ enum class GradleBuildTime(private val parent: GradleBuildTime? = null, private
COMPILER_PERFORMANCE(COMPILATION_ROUND, readableString = "Compiler time"),
COMPILER_INITIALIZATION(COMPILER_PERFORMANCE, "Compiler initialization time"),
CODE_ANALYSIS(COMPILER_PERFORMANCE, "Compiler code analysis"),
CODE_GENERATION(COMPILER_PERFORMANCE, "Compiler code generation"),
IR_TRANSLATION(COMPILER_PERFORMANCE, "Compiler IR translation"),
IR_LOWERING(COMPILER_PERFORMANCE, "Compiler IR lowering"),
IR_GENERATION(COMPILER_PERFORMANCE, "Compiler IR generation"),
CODE_GENERATION(COMPILER_PERFORMANCE, "Compiler code generation"),
IR_LOWERING(CODE_GENERATION, "Compiler IR lowering"),
IR_GENERATION(CODE_GENERATION, "Compiler IR generation"),
IC_WRITE_HISTORY_FILE(INCREMENTAL_COMPILATION_DAEMON, "Write history file"),
SHRINK_AND_SAVE_CURRENT_CLASSPATH_SNAPSHOT_AFTER_COMPILATION(INCREMENTAL_COMPILATION_DAEMON, "Shrink and save current classpath snapshot after compilation"),
INCREMENTAL_SHRINK_CURRENT_CLASSPATH_SNAPSHOT(SHRINK_AND_SAVE_CURRENT_CLASSPATH_SNAPSHOT_AFTER_COMPILATION, "Shrink current classpath snapshot incrementally"),
Expand Down

0 comments on commit 0872420

Please sign in to comment.