Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for renderAnnotationsWithMeta (0.43 sec)

  1. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/AbstractAnalysisApiAnnotationsOnDeclarationsWithMetaTest.kt

        override fun renderAnnotations(analysisSession: KaSession, annotations: KaAnnotationList): String {
            return TestAnnotationRenderer.renderAnnotationsWithMeta(analysisSession, annotations)
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 741 bytes
    - Viewed (0)
  2. analysis/analysis-api-impl-base/tests/org/jetbrains/kotlin/analysis/api/impl/base/test/cases/annotations/TestAnnotationRenderer.kt

            renderAnnotationsRecursive(analysisSession, annotations, currentMetaAnnotations = null, indent = 0)
        }
    
        fun renderAnnotationsWithMeta(analysisSession: KaSession, annotations: KaAnnotationList) = buildString {
            renderAnnotationsRecursive(analysisSession, annotations, currentMetaAnnotations = setOf(), indent = 0)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.3K bytes
    - Viewed (0)
Back to top