• Home
  • Raw
  • Download

Lines Matching full:annotations

22 // class main.KotlinClass : annotations.ClassTarget{[value = onClass]}
23 // class main.KotlinClass : annotations.NoTargetAnnotation{[value = onClass]}
24 // function myFun : annotations.FunctionTarget{[value = onMyFun]}
25 // function myFun : annotations.NoTargetAnnotation{[value = onMyFun]}
26 // getter of property prop : annotations.PropertyGetterTarget{[value = get:]}
27 // parameter <set-?> : annotations.ValueParameterTarget{[value = onPropSetter]}
28 // parameter <set-?> : annotations.ValueParameterTarget{[value = onProp]}
29 // parameter param1 : annotations.NoTargetAnnotation{[value = onParam1]}
30 // parameter param1 : annotations.ValueParameterTarget{[value = onParam1]}
31 // parameter param2 : annotations.NoTargetAnnotation{[value = onParam2]}
32 // parameter param2 : annotations.ValueParameterTarget{[value = onParam2]}
33 // property prop : annotations.FieldTarget2{[value = field:]}
34 // property prop : annotations.FieldTarget{[value = onProp]}
35 // property prop : annotations.NoTargetAnnotation{[value = onProp]}
36 // property prop : annotations.PropertyTarget{[value = onProp]}
37 // setter of property prop : annotations.PropertySetterTarget{[value = set:]}
39 // class lib.KotlinClass : annotations.ClassTarget{[value = onClass]}
40 // class lib.KotlinClass : annotations.NoTargetAnnotation{[value = onClass]}
41 // function myFun : annotations.FunctionTarget{[value = onMyFun]}
42 // function myFun : annotations.NoTargetAnnotation{[value = onMyFun]}
43 // getter of property prop : annotations.PropertyGetterTarget{[value = get:]}
44 // parameter param1 : annotations.NoTargetAnnotation{[value = onParam1]}
45 // parameter param1 : annotations.ValueParameterTarget{[value = onParam1]}
46 // parameter param2 : annotations.NoTargetAnnotation{[value = onParam2]}
47 // parameter param2 : annotations.ValueParameterTarget{[value = onParam2]}
48 // parameter propInConstructor : annotations.ValueParameterTarget{[value = propInConstructor]}
49 // property prop : annotations.FieldTarget2{[value = field:]}
50 // property prop : annotations.FieldTarget{[value = onProp]}
51 // property prop : annotations.NoTargetAnnotation{[value = onProp]}
52 // property prop : annotations.PropertyTarget{[value = onProp]}
53 // setter of property prop : annotations.PropertySetterTarget{[value = set:]}
55 // class main.DataClass : annotations.ClassTarget{[value = onDataClass]}
56 // class main.DataClass : annotations.NoTargetAnnotation{[value = onDataClass]}
57 // getter of property constructorParam : annotations.PropertyGetterTarget{[value = get:]}
58 // parameter <set-?> : annotations.ValueParameterTarget{[value = onConstructorParam]}
59 // parameter constructorParam : annotations.NoTargetAnnotation{[value = onConstructorParam]}
60 // parameter constructorParam : annotations.ValueParameterTarget{[value = onConstructorParam]}
61 // property constructorParam : annotations.FieldTarget2{[value = field:]}
62 // property constructorParam : annotations.FieldTarget{[value = onConstructorParam]}
63 // property constructorParam : annotations.NoTargetAnnotation{[value = onConstructorParam]}
64 // property constructorParam : annotations.PropertyTarget{[value = onConstructorParam]}
65 // property constructorParam : annotations.ValueParameterAndFieldTarget{[value = valueParameterAndF…
66 // setter of property constructorParam : annotations.PropertySetterTarget{[value = set:]}
68 // class lib.DataClass : annotations.ClassTarget{[value = onDataClass]}
69 // class lib.DataClass : annotations.NoTargetAnnotation{[value = onDataClass]}
70 // getter of property constructorParam : annotations.PropertyGetterTarget{[value = get:]}
71 // parameter constructorParam : annotations.NoTargetAnnotation{[value = onConstructorParam]}
72 // property constructorParam : annotations.FieldTarget2{[value = field:]}
73 // property constructorParam : annotations.FieldTarget{[value = onConstructorParam]}
74 // property constructorParam : annotations.PropertyTarget{[value = onConstructorParam]}
75 // setter of property constructorParam : annotations.PropertySetterTarget{[value = set:]}
77 // MODULE: annotations
78 // FILE: Annotations.kt
79 package annotations; package
109 // MODULE: lib(annotations)
112 import annotations.*;
150 import annotations.*;
152 // MODULE: main(lib, annotations)
155 import annotations.*;
199 import annotations.*;