-
Notifications
You must be signed in to change notification settings - Fork 274
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Simplify parsing of default values in JVM binaries
- Loading branch information
Showing
5 changed files
with
323 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 2 additions & 2 deletions
4
kotlin-analysis-api/testData/annotationValue/defaultKClassValue.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,155 @@ | ||
/* | ||
* Copyright 2020 Google LLC | ||
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors. | ||
* | ||
* Licensed under the Apache License, Version 2.0 (the "License"); | ||
* you may not use this file except in compliance with the License. | ||
* You may obtain a copy of the License at | ||
* | ||
* http://www.apache.org/licenses/LICENSE-2.0 | ||
* | ||
* Unless required by applicable law or agreed to in writing, software | ||
* distributed under the License is distributed on an "AS IS" BASIS, | ||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
* See the License for the specific language governing permissions and | ||
* limitations under the License. | ||
*/ | ||
|
||
// TEST PROCESSOR: AnnotationDefaultValueProcessor | ||
// EXPECTED: | ||
// KotlinAnnotation -> a:debugKt:false,b:default:true,kClassValue:Array<Array<InnerObj>>:true,topLevelProp:foo:true,companionProp:companion:true | ||
// JavaAnnotation -> debug:debug:false,withDefaultValue:OK:true,nested:@Nested:true | ||
// JavaAnnotation2 -> y:y-kotlin:false,x:x-kotlin:false,z:z-default:true | ||
// KotlinAnnotation2 -> y:y-kotlin:false,x:x-kotlin:false,z:z-default:true,kotlinEnumVal:KotlinEnum.VALUE_1:true | ||
// KotlinAnnotationLib -> a:debugLibKt:false,b:defaultInLib:true,kClassValue:OtherKotlinAnnotation:true,topLevelProp:bar:true | ||
// JavaAnnotationWithDefaults -> stringVal:foo:true,stringArrayVal:[x, y]:true,typeVal:HashMap<(Any..Any?), (Any..Any?)>:true,typeArrayVal:[LinkedHashMap<(Any..Any?), (Any..Any?)>]:true,intVal:3:true,intArrayVal:[1, 3, 5]:true,enumVal:JavaEnum.DEFAULT:true,enumArrayVal:[JavaEnum.VAL1, JavaEnum.VAL2]:true,localEnumVal:LocalEnum.LOCAL1:true,otherAnnotationVal:@OtherAnnotation:true,otherAnnotationArrayVal:[@OtherAnnotation]:true,kotlinAnnotationLibVal:@OtherKotlinAnnotation:true | ||
// KotlinAnnotationWithDefaults -> stringVal:foo:false,stringArrayVal:[x, y]:true,typeVal:HashMap<(Any..Any?), (Any..Any?)>:true,typeArrayVal:[LinkedHashMap<(Any..Any?), (Any..Any?)>]:true,intVal:3:true,intArrayVal:[1, 3, 5]:true,enumVal:JavaEnum.DEFAULT:true,enumArrayVal:[JavaEnum.VAL1, JavaEnum.VAL2]:true,otherAnnotationVal:@OtherAnnotation:true,otherAnnotationArrayVal:[@OtherAnnotation]:true,kotlinAnnotationLibVal:@OtherKotlinAnnotation:true | ||
// KotlinAnnotation -> a:debugKt:false,b:default:true,kClassValue:Array<Array<InnerObj>>:true,topLevelProp:foo:true,companionProp:companion:true | ||
// JavaAnnotation -> debug:debugJava2:false,withDefaultValue:OK:true,nested:@Nested:true | ||
// JavaAnnotation2 -> y:y-java:false,x:x-java:false,z:z-default:true | ||
// KotlinAnnotation2 -> y:y-java:false,x:x-java:false,z:z-default:true,kotlinEnumVal:KotlinEnum.VALUE_1:true | ||
// END | ||
// MODULE: lib | ||
// FILE: Default.kt | ||
const val Bar = "bar" | ||
annotation class KotlinAnnotationLib(val a: String, val b: String = "defaultInLib", val kClassValue: kotlin.reflect.KClass<*> = OtherKotlinAnnotation::class, val topLevelProp:String = Bar) | ||
|
||
annotation class OtherKotlinAnnotation(val b: String = "otherKotlinAnnotationDefault") | ||
|
||
// FILE: JavaEnum.java | ||
public enum JavaEnum { | ||
VAL1, | ||
VAL2, | ||
DEFAULT | ||
} | ||
|
||
// FILE: OtherAnnotation.java | ||
import java.lang.annotation.Retention; | ||
import java.lang.annotation.RetentionPolicy; | ||
@Retention(RetentionPolicy.RUNTIME) | ||
public @interface OtherAnnotation { | ||
String value(); | ||
} | ||
|
||
// FILE: JavaAnnotationWithDefaults.java | ||
import java.util.HashMap; | ||
import java.util.LinkedHashMap; | ||
public @interface JavaAnnotationWithDefaults { | ||
String stringVal() default "foo"; | ||
String[] stringArrayVal() default {"x", "y"}; | ||
Class<?> typeVal() default HashMap.class; | ||
Class[] typeArrayVal() default {LinkedHashMap.class}; | ||
int intVal() default 3; | ||
int[] intArrayVal() default {1, 3, 5}; | ||
JavaEnum enumVal() default JavaEnum.DEFAULT; | ||
JavaEnum[] enumArrayVal() default {JavaEnum.VAL1, JavaEnum.VAL2}; | ||
LocalEnum localEnumVal() default LocalEnum.LOCAL1; | ||
OtherAnnotation otherAnnotationVal() default @OtherAnnotation("def"); | ||
OtherAnnotation[] otherAnnotationArrayVal() default {@OtherAnnotation("v1")}; | ||
OtherKotlinAnnotation kotlinAnnotationLibVal() default @OtherKotlinAnnotation(b = "JavaAnnotationWithDefaults"); | ||
enum LocalEnum { | ||
LOCAL1, | ||
LOCAL2 | ||
} | ||
} | ||
|
||
// FILE: KotlinAnnotationWithDefaults.kt | ||
import kotlin.reflect.KClass | ||
|
||
annotation class KotlinAnnotationWithDefaults( | ||
val stringVal: String = "foo", | ||
val stringArrayVal: Array<String> = ["x", "y"], | ||
val typeVal: KClass<*> = java.util.HashMap::class, | ||
val typeArrayVal: Array<KClass<*>> = [java.util.LinkedHashMap::class], | ||
val intVal: Int = 3, | ||
val intArrayVal: IntArray = [1, 3, 5], | ||
val enumVal: JavaEnum = JavaEnum.DEFAULT, | ||
val enumArrayVal: Array<JavaEnum> = [JavaEnum.VAL1, JavaEnum.VAL2], | ||
val otherAnnotationVal: OtherAnnotation = OtherAnnotation("def"), | ||
val otherAnnotationArrayVal: Array<OtherAnnotation> = [OtherAnnotation("v1")], | ||
val kotlinAnnotationLibVal: OtherKotlinAnnotation = OtherKotlinAnnotation("1") | ||
) | ||
// MODULE: main(lib) | ||
// FILE: Const.kt | ||
const val Foo = "foo" | ||
const val DebugKt = "debugKt" | ||
|
||
class Container { | ||
companion object { | ||
const val comp = "companion" | ||
} | ||
} | ||
|
||
// FILE: a.kt | ||
import test.KotlinEnum | ||
import Container.Companion.comp | ||
|
||
|
||
annotation class KotlinAnnotation(val a: String, val b:String = "default", val kClassValue: kotlin.reflect.KClass<*> = Array<Array<InnerObj>>::class, val topLevelProp: String = Foo, val companionProp: String = comp) { | ||
object InnerObj | ||
} | ||
annotation class KotlinAnnotation2(val x: String, val y:String = "y-default", val z:String = "z-default", val kotlinEnumVal: KotlinEnum = KotlinEnum.VALUE_1) | ||
|
||
@KotlinAnnotation(DebugKt) | ||
@JavaAnnotation("debug") | ||
@JavaAnnotation2(y="y-kotlin", x="x-kotlin") | ||
@KotlinAnnotation2(y="y-kotlin", x="x-kotlin") | ||
@KotlinAnnotationLib("debugLibKt") | ||
@JavaAnnotationWithDefaults | ||
@KotlinAnnotationWithDefaults(stringVal="foo") //set the value to the same as the default | ||
class A | ||
|
||
// FILE: test.kt | ||
package test | ||
|
||
enum class KotlinEnum { | ||
VALUE_1, | ||
VALUE2 | ||
} | ||
|
||
// FILE: JavaAnnotation.java | ||
public @interface JavaAnnotation { | ||
String debug(); | ||
String withDefaultValue() default "OK"; | ||
@interface Nested { | ||
String nestedX() default "nested"; | ||
} | ||
Nested nested() default @Nested(); | ||
} | ||
|
||
// FILE: JavaAnnotation2.java | ||
public @interface JavaAnnotation2 { | ||
String x() default "x-default"; | ||
String y() default "y-default"; | ||
String z() default "z-default"; | ||
} | ||
|
||
// FILE: JavaAnnotated.java | ||
|
||
@KotlinAnnotation(ConstKt.DebugKt) | ||
@JavaAnnotation("debugJava2") | ||
@JavaAnnotation2(y="y-java", x="x-java") | ||
@KotlinAnnotation2(y="y-java", x="x-java") | ||
public class JavaAnnotated { | ||
|
||
} |
Oops, something went wrong.