Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 238 for declareNS (0.17 sec)

  1. src/internal/types/testdata/check/decls2/decls2a.go

    // license that can be found in the LICENSE file.
    
    // method declarations
    
    package decls2
    
    import "time"
    import "unsafe"
    
    // T1 declared before its methods.
    type T1 struct{
    	f int
    }
    
    func (T1) m() {}
    func (T1) m /* ERROR "already declared" */ () {}
    func (x *T1) f /* ERROR "field and method with the same name f" */ () {}
    
    // Conflict between embedded field and method name,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/annotationForFunctionOutOfCodeGenTarget.ir.txt

              isBookmarked: GET_VAR 'isFavorite: kotlin.Boolean declared in <root>.PostCardSimple' type=kotlin.Boolean origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 07:06:11 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtOverrideInfoProvider.kt

        /**
         * Unwraps fake override [KaCallableSymbol]s until an original declared symbol is uncovered.
         *
         * In a class scope, a symbol may be derived from symbols declared in super classes. For example, consider
         *
         * ```
         * public interface  A<T> {
         *   public fun foo(t:T)
         * }
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. test/alias2.go

    	A4 = Value
    	A5 = Value
    
    	N0 A0
    )
    
    // Methods can be declared on the original named type and the alias.
    func (T0) m1()  {} // GCCGO_ERROR "previous"
    func (*T0) m1() {} // ERROR "method redeclared: T0\.m1|T0\.m1 already declared|redefinition of .m1."
    func (A0) m1()  {} // ERROR "T0\.m1 already declared|redefinition of .m1."
    func (A0) m1()  {} // ERROR "T0\.m1 already declared|redefinition of .m1."
    func (A0) m2()  {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:09:14 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  5. analysis/analysis-api/testData/components/compilerFacility/compilation/annotationWithVararg.ir.txt

          BLOCK_BODY
            RETURN type=kotlin.Nothing from='public final fun foo (): kotlin.Int declared in <root>'
              CONST Int type=kotlin.Int value=10
        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Unit
          BLOCK_BODY
            VAR name:x type:kotlin.Int [val]
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Feb 29 06:44:05 UTC 2024
    - 577 bytes
    - Viewed (0)
  6. docs/en/docs/tutorial/security/first-steps.md

    * The user types the `username` and `password` in the frontend, and hits `Enter`.
    * The frontend (running in the user's browser) sends that `username` and `password` to a specific URL in our API (declared with `tokenUrl="token"`).
    * The API checks that `username` and `password`, and responds with a "token" (we haven't implemented any of this yet).
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jun 03 01:48:20 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/dependencyBetweenBinaryLibraries.ir.txt

        FUN name:test visibility:public modality:FINAL <> () returnType:kotlin.Int
          BLOCK_BODY
            RETURN type=kotlin.Nothing from='public final fun test (): kotlin.Int declared in <root>'
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 344 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/foreignValue.ir.txt

          CONSTRUCTOR visibility:public <> () returnType:<root>.CodeFragment [primary]
            BLOCK_BODY
              DELEGATING_CONSTRUCTOR_CALL 'public constructor <init> () [primary] declared in kotlin.Any'
          FUN name:run visibility:public modality:FINAL <> (p0:@[FlexibleNullability] kotlin.String?) returnType:@[FlexibleNullability] kotlin.String?
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Mar 14 10:20:29 UTC 2024
    - 917 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/composableFunctionMultiModules.ir.txt

          annotations:
            MyComposable
          BLOCK_BODY
            CALL 'public final fun Foo (text: @[MyComposable] kotlin.Function0<kotlin.Unit>): kotlin.Unit declared in p3' type=kotlin.Unit origin=null
              text: FUN_EXPR type=kotlin.Function0<kotlin.Unit> origin=LAMBDA
                FUN LOCAL_FUNCTION_FOR_LAMBDA name:<anonymous> visibility:local modality:FINAL <> () returnType:kotlin.Unit
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Feb 26 21:57:23 UTC 2024
    - 886 bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/firPluginPrototypeMultiModule/annotationForFunctionOutOfCodeGenTarget2.ir.txt

            MyComposable
          BLOCK_BODY
            RETURN type=kotlin.Nothing from='public final fun Greeting (): kotlin.String declared in <root>'
              STRING_CONCATENATION type=kotlin.String
                CONST String type=kotlin.String value="Hi "
                CALL 'public final fun <get-foo> (): kotlin.Int declared in p3.FooKt' type=kotlin.Int origin=GET_PROPERTY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Mar 26 07:06:11 UTC 2024
    - 580 bytes
    - Viewed (0)
Back to top