Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for CodeFragment (0.14 sec)

  1. analysis/analysis-api-fe10/tests-gen/org/jetbrains/kotlin/analysis/api/fe10/test/cases/generated/cases/references/Fe10IdeNormalAnalysisSourceModuleReferenceResolveTestGenerated.java

      @Nested
      @TestMetadata("analysis/analysis-api/testData/referenceResolve/codeFragment")
      @TestDataPath("$PROJECT_ROOT")
      public class CodeFragment {
        @Test
        public void testAllFilesPresentInCodeFragment() {
          KtTestUtil.assertAllTestsPresentByMetadataWithExcluded(this.getClass(), new File("analysis/analysis-api/testData/referenceResolve/codeFragment"), Pattern.compile("^([^.]+)\\.kt$"), null, true);
        }
    
        @Nested
    Java
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Sat Apr 13 09:17:40 GMT 2024
    - 129.5K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirCompilerFacility.kt

            resolveSession: LLFirResolveSession,
            configuration: CompilerConfiguration,
        ): CodeFragmentMappings {
            val codeFragment = mainFirFile.codeFragment
    
            val capturedData = CodeFragmentCapturedValueAnalyzer.analyze(resolveSession, codeFragment)
    
            val capturedSymbols = capturedData.symbols
            val capturedValues = capturedSymbols.map { it.value }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Fri Apr 19 11:06:47 GMT 2024
    - 32.2K bytes
    - Viewed (1)
  3. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/references/FirSimpleNameReference.kt

        private fun getImportAlias(importDirective: KtImportDirective?): KtImportAlias? {
            val fqName = importDirective?.importedFqName ?: return null
            val codeFragment = KtPsiFactory(element.project).createExpressionCodeFragment(fqName.asString(), element)
            val contentElement = codeFragment.getContentElement()
            val importResults =
                when (contentElement) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Nov 02 21:23:43 GMT 2023
    - 5K bytes
    - Viewed (0)
  4. analysis/analysis-api-fe10/tests/org/jetbrains/kotlin/analysis/api/fe10/test/configurator/AnalysisApiFe10TestConfiguratorFactory.kt

                    TestModuleKind.ScriptSource,
                    TestModuleKind.LibraryBinary,
                    TestModuleKind.LibraryBinaryDecompiled,
                    TestModuleKind.LibrarySource,
                    TestModuleKind.CodeFragment,
                    TestModuleKind.NotUnderContentRoot -> {
                        false
                    }
                }
            }
        }
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Mon Feb 26 21:57:23 GMT 2024
    - 1.8K bytes
    - Viewed (0)
Back to top