-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Test] Reproduce KT-74040 in AA tests
- Loading branch information
1 parent
c49acfb
commit 05e92d4
Showing
7 changed files
with
98 additions
and
0 deletions.
There are no files selected for viewing
6 changes: 6 additions & 0 deletions
6
...generated/cases/symbols/Fe10IdeNormalAnalysisSourceModuleSymbolByFqNameTestGenerated.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
.../generated/cases/symbols/FirIdeNormalAnalysisSourceModuleSymbolByFqNameTestGenerated.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
6 changes: 6 additions & 0 deletions
6
...ted/cases/symbols/FirStandaloneNormalAnalysisSourceModuleSymbolByFqNameTestGenerated.java
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
32 changes: 32 additions & 0 deletions
32
analysis/analysis-api/testData/symbols/symbolByFqName/libraryNestedClass.descriptors.txt
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,32 @@ | ||
KaNamedClassSymbol: | ||
annotations: [] | ||
classId: one/Producer.NestedClass | ||
classKind: CLASS | ||
companionObject: null | ||
compilerVisibility: Public | ||
contextReceivers: [] | ||
isActual: false | ||
isData: false | ||
isExpect: false | ||
isExternal: false | ||
isFun: false | ||
isInline: false | ||
isInner: false | ||
location: CLASS | ||
modality: FINAL | ||
name: NestedClass | ||
origin: LIBRARY | ||
superTypes: [ | ||
KaUsualClassType: | ||
annotations: [] | ||
typeArguments: [] | ||
type: one/Producer | ||
] | ||
typeParameters: [] | ||
visibility: PUBLIC | ||
getContainingFileSymbol: null | ||
getContainingModule: Could not render due to kotlin.NotImplementedError: An operation is not implemented: org.jetbrains.kotlin.analysis.api.descriptors.symbols.descriptorBased.KaFe10DescNamedClassSymbol | ||
|
||
annotationApplicableTargets: null | ||
deprecationStatus: null | ||
isPublicApi: false |
16 changes: 16 additions & 0 deletions
16
analysis/analysis-api/testData/symbols/symbolByFqName/libraryNestedClass.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// class: one/Producer.NestedClass | ||
// RENDER_IS_PUBLIC_API | ||
// MODULE: library | ||
// MODULE_KIND: LibraryBinary | ||
// FILE: Producer.kt | ||
package one | ||
|
||
internal open class Producer() { | ||
class NestedClass() : Producer() | ||
} | ||
|
||
// MODULE: main(library) | ||
// FILE: main.kt | ||
fun main() { | ||
} | ||
|
1 change: 1 addition & 0 deletions
1
analysis/analysis-api/testData/symbols/symbolByFqName/libraryNestedClass.pretty.txt
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 @@ | ||
class NestedClass : one.Producer() |
31 changes: 31 additions & 0 deletions
31
analysis/analysis-api/testData/symbols/symbolByFqName/libraryNestedClass.txt
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,31 @@ | ||
KaNamedClassSymbol: | ||
annotations: [] | ||
classId: one/Producer.NestedClass | ||
classKind: CLASS | ||
companionObject: null | ||
compilerVisibility: Public | ||
contextReceivers: [] | ||
isActual: false | ||
isData: false | ||
isExpect: false | ||
isExternal: false | ||
isFun: false | ||
isInline: false | ||
isInner: false | ||
location: CLASS | ||
modality: FINAL | ||
name: NestedClass | ||
origin: LIBRARY | ||
superTypes: [ | ||
KaUsualClassType: | ||
annotations: [] | ||
typeArguments: [] | ||
type: one/Producer | ||
] | ||
typeParameters: [] | ||
visibility: PUBLIC | ||
getContainingFileSymbol: null | ||
getContainingModule: KaLibraryModule "Library library" | ||
annotationApplicableTargets: null | ||
deprecationStatus: null | ||
isPublicApi: true |