Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getSeparatorAfterContextReceivers (0.23 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/KtRendererCodeStyle.kt

    import org.jetbrains.kotlin.analysis.api.types.KaType
    
    public interface KaRendererCodeStyle {
        public fun getIndentSize(analysisSession: KaSession): Int
    
        public fun getSeparatorAfterContextReceivers(analysisSession: KaSession): String
    
        public fun getSeparatorBetweenAnnotationAndOwner(analysisSession: KaSession, symbol: KaAnnotated): String
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/declarations/ktRendererUtils.kt

        printer: PrettyPrinter,
    ): Unit = printer {
        if (symbol !is KaContextReceiversOwner) return
    
        with(declarationRenderer.typeRenderer) {
            withSuffix(declarationRenderer.codeStyle.getSeparatorAfterContextReceivers(analysisSession)) {
                contextReceiversRenderer.renderContextReceivers(analysisSession, symbol, declarationRenderer.typeRenderer, printer)
            }
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 3.6K bytes
    - Viewed (0)
Back to top