Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for callString (0.15 sec)

  1. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/nestedOuterClass.kt

            }
        }
    }
    
    fun callFoo(foo: Foo): Int {
        return 0
    }
    
    fun callString(string: String): Int {
        return 1
    }
    
    
    // MODULE: main
    // MODULE_KIND: CodeFragment
    // CONTEXT_MODULE: context
    
    // FILE: fragment.kt
    // CODE_FRAGMENT_KIND: EXPRESSION
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 502 bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/nestedOuterClass.ir.txt

                      foo: GET_VAR 'p0: <root>.Foo declared in <root>.CodeFragment.run' type=<root>.Foo origin=null
                    other: CALL 'public final fun callString (string: kotlin.String): kotlin.Int declared in <root>.ContextKt' type=kotlin.Int origin=null
                      string: CALL 'private final fun <get-a> (): kotlin.String declared in <root>.Foo' type=kotlin.String origin=GET_PROPERTY
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  3. src/go/types/conversions.go

    		} else if isNonTypeParamInterface(T) || constArg && !isConstType(T) || !isTypes2 && x.isNil() {
    			final = Default(x.typ) // default type of untyped nil is untyped nil
    		} else if x.mode == constant_ && isInteger(x.typ) && allString(T) {
    			final = x.typ
    		}
    		check.updateExprType(x.expr, final, true)
    	}
    
    	x.typ = T
    }
    
    // TODO(gri) convertibleTo checks if T(x) is valid. It assumes that the type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/conversions.go

    		} else if isNonTypeParamInterface(T) || constArg && !isConstType(T) || !isTypes2 && x.isNil() {
    			final = Default(x.typ) // default type of untyped nil is untyped nil
    		} else if x.mode == constant_ && isInteger(x.typ) && allString(T) {
    			final = x.typ
    		}
    		check.updateExprType(x.expr, final, true)
    	}
    
    	x.typ = T
    }
    
    // TODO(gri) convertibleTo checks if T(x) is valid. It assumes that the type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:51:00 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top