Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for function_name (0.18 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface FunctionCallExpected : KtFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = FunctionCallExpected::class
            val functionName: String
            val hasValueParameters: Boolean
        }
    
        interface IllegalSelector : KtFirDiagnostic<PsiElement> {
            override val diagnosticClass get() = IllegalSelector::class
        }
    
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 171.1K bytes
    - Viewed (0)
  2. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KtFirDiagnostic.NoConstructor
    
    internal class FunctionCallExpectedImpl(
        override val functionName: String,
        override val hasValueParameters: Boolean,
        firDiagnostic: KtPsiDiagnostic,
        token: KtLifetimeToken,
    ) : KtAbstractFirDiagnostic<PsiElement>(firDiagnostic, token), KtFirDiagnostic.FunctionCallExpected
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Wed Apr 24 09:49:26 GMT 2024
    - 225.2K bytes
    - Viewed (0)
  3. doc/go_spec.html

    	a bit.
    -->
    
    <p>
    A function declaration binds an identifier, the <i>function name</i>,
    to a function.
    </p>
    
    <pre class="ebnf">
    FunctionDecl = "func" FunctionName [ TypeParameters ] Signature [ FunctionBody ] .
    FunctionName = identifier .
    FunctionBody = Block .
    </pre>
    
    <p>
    If the function's <a href="#Function_types">signature</a> declares
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu May 02 22:43:51 GMT 2024
    - 279.6K bytes
    - Viewed (0)
Back to top