Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for caseTypes (0.33 sec)

  1. src/cmd/compile/internal/types2/stmt.go

    		}
    	}
    	return
    }
    
    // TODO(gri) Once we are certain that typeHash is correct in all situations, use this version of caseTypes instead.
    // (Currently it may be possible that different types have identical names and import paths due to ImporterFrom.)
    //
    // func (check *Checker) caseTypes(x *operand, xtyp *Interface, types []syntax.Expr, seen map[string]syntax.Expr) (T Type) {
    // 	var dummy operand
    // L:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
  2. src/go/types/stmt.go

    		}
    	}
    	return
    }
    
    // TODO(gri) Once we are certain that typeHash is correct in all situations, use this version of caseTypes instead.
    // (Currently it may be possible that different types have identical names and import paths due to ImporterFrom.)
    //
    // func (check *Checker) caseTypes(x *operand, xtyp *Interface, types []ast.Expr, seen map[string]ast.Expr) (T Type) {
    // 	var dummy operand
    // L:
    // 	for _, e := range types {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.6K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/cfg/builder.go

    			continue
    		}
    		body := b.newBlock(KindSwitchCaseBody, cc)
    		var next *Block
    		for _, casetype := range cc.List {
    			next = b.newBlock(KindSwitchNextCase, cc)
    			// casetype is a type, so don't call b.add(casetype).
    			// This block logically contains a type assertion,
    			// x.(casetype), but it's unclear how to represent x.
    			_ = casetype
    			b.ifelse(body, next)
    			b.current = next
    		}
    		b.current = body
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/serialize/Codecs.kt

        private
        val fingerprintUserTypesBindings: Bindings
    
        init {
            fun makeUserTypeBindings(providersBlock: BindingsBuilder.() -> Unit) = Bindings.of {
                unsupportedTypes()
    
                baseTypes()
    
                bind(HASHCODE_SERIALIZER)
    
                providersBlock()
    
                bind(DefaultContextAwareTaskLoggerCodec)
                bind(LoggerCodec)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 18.8K bytes
    - Viewed (0)
Back to top