Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 117 for Variable (0.57 sec)

  1. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

        )
    
        /**
         * Represents a local variable reassignment.
         */
        public class VariableReassignment(
            /** The reassignment expression. */
            public val expression: KtExpression,
    
            /** Reassigned variable symbol. */
            public val variable: KaVariableLikeSymbol,
    
            /** `true` if the variable is both read and set (as in `x += y` or `x++`). */
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/stmt.go

    		// If lhs exists, declare a corresponding variable in the case-local scope.
    		if lhs != nil {
    			// spec: "The TypeSwitchGuard may include a short variable declaration.
    			// When that form is used, the variable is declared at the beginning of
    			// the implicit block in each clause. In clauses with a case listing
    			// exactly one type, the variable has that type; otherwise, the variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  3. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/signatures/KtVariableLikeSignature.kt

    
    /**
     * A signature of a variable-like symbol. This includes properties, enum entries local variables, etc.
     */
    public abstract class KaVariableLikeSignature<out S : KaVariableLikeSymbol> : KaCallableSignature<S>() {
        /**
         * A name of the variable with respect to the `@ParameterName` annotation. Can be different from the [KaVariableLikeSymbol.name].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  4. doc/next/7-ports.md

    <!-- go.dev/issue/60905, CL 559555 -->
    Go 1.23 introduces a new `GOARM64` environment variable, which specifies the minimum target version of the ARM64 architecture at compile time. Allowed values are `v8.{0-9}` and `v9.{0-5}`. This may be followed by an option specifying extensions implemented by target hardware. Valid options are `,lse` and `,crypto`.
    
    The `GOARM64` environment variable defaults to `v8.0`.
    
    ### RISC-V {#riscv}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:18:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/symbols/pointers/KtFirPsiBasedPropertySymbolPointer.kt

        override fun restoreSymbol(analysisSession: KaSession): KaKotlinPropertySymbol? =
            when (val variable = with(analysisSession) { variableSymbolPointer.restoreSymbol() }) {
                is KaKotlinPropertySymbol -> variable
                is KaValueParameterSymbol -> variable.generatedPrimaryConstructorProperty
                else -> null
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/operand.go

    	typexpr                      // operand is a type
    	constant_                    // operand is a constant; the operand's typ is a Basic type
    	variable                     // operand is an addressable variable
    	mapindex                     // operand is a map index expression (acts like a variable on lhs, commaok on rhs of an assignment)
    	value                        // operand is a computed value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/defaultValues/incrementPostfix.txt

      valuedReturnExpressions = []
      variableReassignments = [
        VariableReassignment:
          expression = x++
          isAugmented = true
          variable = var x: kotlin.Int,
        VariableReassignment:
          expression = x++
          isAugmented = true
          variable = var x: kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 571 bytes
    - Viewed (0)
  8. src/cmd/compile/internal/liveness/plive.go

    // where a complete initialization (definition) of a variable begins.
    // Since the liveness analysis can see initialization of single-word
    // variables quite easy, OpVarDef is only needed for multi-word
    // variables satisfying isfat(n.Type). For simplicity though, buildssa
    // emits OpVarDef regardless of variable width.
    //
    // An 'OpVarDef x' annotation in the instruction stream tells the liveness
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 15:22:22 UTC 2024
    - 45.2K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtInitializerValue.kt

    import org.jetbrains.kotlin.analysis.api.base.KaConstantValue
    import org.jetbrains.kotlin.psi.KtExpression
    
    /**
     * Value representing some property or variable initializer
     */
    public sealed class KaInitializerValue {
        /**
         * [com.intellij.psi.PsiElement] of initializer. May be null if property/variable came from non-source file.
         */
        public abstract val initializerPsi: KtExpression?
    }
    
    /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/dataFlowInfoProvider/exitPointSnapshot/variables/simpleReassignment.txt

      jumpExpressions = []
      returnValueType = null
      valuedReturnExpressions = []
      variableReassignments = [
        VariableReassignment:
          expression = x = 1
          isAugmented = false
          variable = var x: kotlin.Int
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 17:43:55 UTC 2024
    - 392 bytes
    - Viewed (0)
Back to top