6e3016284a
Set test directory to directory with test files (not relative to findUsages folder). This way test will be configured as if all testdata is under source root (previously it was copied into package under path with findUsages) and resolvers will see classes under root package. #KT-14974 In Progress
10 lines
845 B
Plaintext
Vendored
10 lines
845 B
Plaintext
Vendored
[propertyUsages.1.kt] Usage in string constants 16 @PropertyKey(resourceBundle = "propertyUsages.0") val s1 = "foo.bar"
|
|
[propertyUsages.1.kt] Usage in string constants 18 message("foo.bar")
|
|
[propertyUsages.1.kt] Usage in string constants 21 "test" infixMessage "foo.bar"
|
|
[propertyUsages.1.kt] Usage in string constants 23 "foo.bar" infixMessage2 "test"
|
|
[propertyUsages.1.kt] Usage in string constants 25 "foo.bar".infixMessage2("test")
|
|
[propertyUsages.1.kt] Usage in string constants 26 -"foo.bar"
|
|
[propertyUsages.1.kt] Usage in string constants 27 1["foo.bar"]
|
|
[propertyUsages.1.kt] Usage in string constants 28 "foo.bar"["test"]
|
|
[propertyUsages.2.java] Usage in string constants 3 @PropertyKey(resourceBundle = "propertyUsages.0") String s1 = "foo.bar"
|
|
[propertyUsages.2.java] Usage in string constants 5 PropertyUsages_1Kt.message("foo.bar"); |