FIR IDE: more comprehensive abstractions of annotation values

This commit is contained in:
Jinseong Jeon
2021-09-16 12:04:28 -07:00
committed by Ilya Kirillov
parent fe41c4513f
commit 6ef2dad895
36 changed files with 316 additions and 52 deletions
@@ -0,0 +1,10 @@
enum class Color {
R,
G,
B
}
annotation class Annotation(val color : Color)
@Annotation(<expr>Color.R</expr>)
class C