Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 307 for esse (0.16 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/KtFirNamedClassOrObjectSymbol.kt

                when (val possiblyRawVisibility = firSymbol.fir.visibility) {
                    Visibilities.Unknown -> if (firSymbol.fir.isLocal) Visibilities.Local else Visibilities.Public
                    else -> possiblyRawVisibility
                }
            }
    
        override val annotations by cached {
            KaFirAnnotationListForDeclaration.create(firSymbol, builder)
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/annotations/KtFe10AnnotationsList.kt

            get() = analysisContext.token
    
        override fun isEmpty(): Boolean = withValidityAssertion {
            return if (ignoredAnnotations.isEmpty()) {
                fe10Annotations.isEmpty()
            } else {
                backingAnnotations.isEmpty()
            }
        }
    
        override val size: Int
            get() = withValidityAssertion { backingAnnotations.size }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/renderer/base/annotations/renderers/KtAnnotationQualifierRenderer.kt

            ) {
                printer {
                    val classId = annotation.classId
                    if (classId != null) {
                        append(classId.asSingleFqName().render())
                    } else {
                        append("ERROR_ANNOTATION")
                    }
                }
            }
        }
    
        public object WITH_SHORT_NAMES : KaAnnotationQualifierRenderer {
            override fun renderQualifier(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. analysis/analysis-api-standalone/analysis-api-fir-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/services/LLStandaloneFirElementByPsiElementChooser.kt

                        }
                    }
                    if (isMarkedNullable) "$renderedQualifier?" else renderedQualifier
                }
                is FirFunctionTypeRef -> {
                    val classId = if (isSuspend) {
                        StandardNames.getSuspendFunctionClassId(parametersCount)
                    } else {
                        StandardNames.getFunctionClassId(parametersCount)
                    }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 15 11:34:07 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            val typeToRender = if (renderExpandedTypes) type.fullyExpandedType else type
    
            renderFrontendIndependentKClassNameOf(typeToRender, printer)
            printer.withIndent {
                appendLine()
                if (renderTypeByProperties) {
                    renderByPropertyNames(typeToRender, printer)
                } else {
                    append("annotations: ")
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  6. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirReferenceShortener.kt

                    is FirAbstractSimpleImportingScope -> EXPLICIT
                    else -> LOCAL
                }
            }
    
            fun fromShortenOption(option: ShortenStrategy): ImportKind? = when (option) {
                ShortenStrategy.SHORTEN_AND_IMPORT -> EXPLICIT
                ShortenStrategy.SHORTEN_AND_STAR_IMPORT -> STAR
                else -> null
            }
        }
    }
    
    private data class AvailableSymbol<out T>(
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 69.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirSymbolContainingDeclarationProvider.kt

                    return false
                }
    
                is KaScriptSymbol -> {
                    // Scripts are always top-level
                    return false
                }
    
                else -> {}
            }
    
            if (symbol is KaSymbolWithKind && symbol.symbolKind == KaSymbolKind.TOP_LEVEL) {
                val containingFile = (symbol.firSymbol.fir as? FirElementWithResolveState)?.getContainingFile()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 09:59:11 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  8. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            is KaFirNamedClassOrObjectSymbol -> firSymbol.fir
            is KaFirPsiJavaClassSymbol -> firSymbol.fir
            is KaFirAnonymousObjectSymbol -> firSymbol.fir
            else -> error(
                "`${this::class.qualifiedName}` needs to be specially handled by the scope provider or is an unknown" +
                        " ${KaSymbolWithDeclarations::class.simpleName} implementation."
            )
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/impl/KtModuleUtils.kt

                    // E.g., project/app/src
                    addAll(collectSourceFilePaths(path))
                    if (includeDirectoryRoot) {
                        add(path)
                    }
                } else {
                    // E.g., project/app/src/some/pkg/main.kt
                    add(path)
                }
            }
        }
    }
    
    /**
     * Collect source file path from the given [root]
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 20:26:34 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  10. .github/workflows/maven_build_itself.yml

                  echo "TEMP_MAVEN_BIN_DIR=$maven_bin_dir" >> $GITHUB_ENV
                else
                  echo "$maven_bin_dir does not exist."
                  exit 1;
                fi
              else
                echo "${{ env.TAR_BALL }} does not exist."
                exit 1;
              fi
            env:
              TAR_BALL: apache-maven/target/apache-maven-bin.tar.gz
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 03 17:58:28 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top