Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for unused_parameter (0.45 sec)

  1. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/resolutionErrors.descriptors.txt

        TOO_MANY_ARGUMENTS      text ranges: [(82,83)]
          PSI: KtConstantExpression at (5,9-10)
      for PSI element of type KtParameter at (2,9-18)
        UNUSED_PARAMETER      text ranges: [(21,22)]
          PSI: KtParameter at (2,9-18)
      for PSI element of type KtParameter at (3,9-22)
        UNUSED_PARAMETER      text ranges: [(43,44)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 09 12:56:52 UTC 2021
    - 930 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/incompleteDelegation.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (3,21-28)
        UNUSED_PARAMETER      text ranges: [(53,54)]
          PSI: KtParameter at (3,21-28)
      for PSI element of type KtParameter at (3,30-45)
        UNUSED_PARAMETER      text ranges: [(62,63)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Nov 29 08:27:53 UTC 2023
    - 299 bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClassFromAnotherModule.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (13,25-61)
        UNUSED_PARAMETER      text ranges: [(86,95)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClass.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (11,25-61)
        UNUSED_PARAMETER      text ranges: [(64,73)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClassFromAnotherModule.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (13,25-61)
        UNUSED_PARAMETER      text ranges: [(86,95)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClass.descriptors.txt

    Diagnostics from elements:
      for PSI element of type KtParameter at (11,25-61)
        UNUSED_PARAMETER      text ranges: [(64,73)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 165 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/precompile/PrecompiledProjectScript.kt

        }
    
        /**
         * Configures the build script classpath for this project.
         *
         * @see [Project.buildscript]
         */
        @Suppress("unused")
        open fun buildscript(@Suppress("unused_parameter") block: ScriptHandlerScope.() -> Unit) {
            throw IllegalStateException("The `buildscript` block is not supported on Kotlin script plugins, please use the `plugins` block or project level dependencies.")
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  8. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoSimple/demoTypes.kt

    @file:Suppress("UNUSED_PARAMETER")
    
    package com.example
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Builder
    import org.gradle.declarative.dsl.model.annotations.Restricted
    
    
    class Abc {
        @get:Restricted
        var a: Int = 0
    
        @Restricted
        fun b(): Int = 1
    
        @get:Restricted
        var str: String = ""
    
        @Adding
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 949 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/typeMismatches.descriptors.txt

      for PSI element of type KtStringTemplateExpression at (1,14-16)
        TYPE_MISMATCH      text ranges: [(13,15)]
          PSI: KtStringTemplateExpression at (1,14-16)
      for PSI element of type KtParameter at (3,9-18)
        UNUSED_PARAMETER      text ranges: [(25,26)]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Dec 09 12:56:52 UTC 2021
    - 652 bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/CompiledKotlinBuildScript.kt

         */
        @Suppress("unused")
        open fun buildscript(@Suppress("unused_parameter") block: ScriptHandlerScope.() -> Unit): Unit =
            internalError()
    
        /**
         * Configures the plugin dependencies for this project.
         *
         * @see [PluginDependenciesSpec]
         */
        @Suppress("unused")
        open fun plugins(@Suppress("unused_parameter") block: PluginDependenciesSpecScope.() -> Unit): Unit =
            invalidPluginsCall()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top