Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for TILDE (0.05 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    }
    
    // EmbeddedTerm = [ "~" ] Type .
    func (p *parser) embeddedTerm() Expr {
    	if trace {
    		defer p.trace("embeddedTerm")()
    	}
    
    	if p.tok == _Operator && p.op == Tilde {
    		t := new(Operation)
    		t.pos = p.pos()
    		t.Op = Tilde
    		p.next()
    		t.X = p.type_()
    		return t
    	}
    
    	t := p.typeOrNil()
    	if t == nil {
    		t = p.badExpr()
    		p.syntaxError("expected ~ term or type")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/go/types/operand.go

    			// representable by each specific type in the type set of T.
    			return Tp.is(func(t *term) bool {
    				if t == nil {
    					return false
    				}
    				// A term may be a tilde term but the underlying
    				// type of an untyped value doesn't change so we
    				// don't need to do anything special.
    				newType, _, _ := check.implicitTypeAndValue(x, t.typ)
    				return newType != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. src/go/types/subst.go

    				// first function that got substituted => allocate new out slice
    				// and copy all functions
    				new := make([]*Term, len(in))
    				copy(new, out)
    				out = new
    				copied = true
    			}
    			out[i] = NewTerm(t.tilde, u)
    		}
    	}
    	return
    }
    
    // replaceRecvType updates any function receivers that have type old to have
    // type new. It does not modify the input slice; if modifications are required,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/types2/operand.go

    			// representable by each specific type in the type set of T.
    			return Tp.is(func(t *term) bool {
    				if t == nil {
    					return false
    				}
    				// A term may be a tilde term but the underlying
    				// type of an untyped value doesn't change so we
    				// don't need to do anything special.
    				newType, _, _ := check.implicitTypeAndValue(x, t.typ)
    				return newType != nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 21:17:10 UTC 2024
    - 11K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/subst.go

    				// first function that got substituted => allocate new out slice
    				// and copy all functions
    				new := make([]*Term, len(in))
    				copy(new, out)
    				out = new
    				copied = true
    			}
    			out[i] = NewTerm(t.tilde, u)
    		}
    	}
    	return
    }
    
    // replaceRecvType updates any function receivers that have type old to have
    // type new. It does not modify the input slice; if modifications are required,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:04:07 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. cmd/object-api-utils_test.go

    		{"!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~", true},
    		{"␀␁␂␃␄␅␆␇␈␉␊␋␌␍␎␏␐␑␒␓␔␕␖␗␘␙␚␛␜␝␞␟␡", true},
    		{"trailing VT␋/trailing VT␋", true},
    		{"␋leading VT/␋leading VT", true},
    		{"~leading tilde", true},
    		{"\rleading CR", true},
    		{"\nleading LF", true},
    		{"\tleading HT", true},
    		{"trailing CR\r", true},
    		{"trailing LF\n", true},
    		{"trailing HT\t", true},
    		// cases for which test should fail.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  7. src/go/types/builtins.go

    		var terms []*Term
    		if !tp.is(func(t *term) bool {
    			if t == nil {
    				return false
    			}
    			if r := f(t.typ); r != nil {
    				terms = append(terms, NewTerm(t.tilde, r))
    				return true
    			}
    			return false
    		}) {
    			return nil
    		}
    
    		// We can type-check this fine but we're introducing a synthetic
    		// type parameter for the result. It's not clear what the API
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/decl.go

    	// embed it in an implicit interface so that only interface type-checking
    	// needs to take care of such type expressions.
    	if op, _ := x.(*syntax.Operation); op != nil && (op.Op == syntax.Tilde || op.Op == syntax.Or) {
    		t := check.typ(&syntax.InterfaceType{MethodList: []*syntax.Field{{Type: x}}})
    		// mark t as implicit interface if all went well
    		if t, _ := t.(*Interface); t != nil {
    			t.implicit = true
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/builtins.go

    		var terms []*Term
    		if !tp.is(func(t *term) bool {
    			if t == nil {
    				return false
    			}
    			if r := f(t.typ); r != nil {
    				terms = append(terms, NewTerm(t.tilde, r))
    				return true
    			}
    			return false
    		}) {
    			return nil
    		}
    
    		// We can type-check this fine but we're introducing a synthetic
    		// type parameter for the result. It's not clear what the API
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  10. src/go/types/decl.go

    	// embed it in an implicit interface so that only interface type-checking
    	// needs to take care of such type expressions.
    	wrap := false
    	switch op := x.(type) {
    	case *ast.UnaryExpr:
    		wrap = op.Op == token.TILDE
    	case *ast.BinaryExpr:
    		wrap = op.Op == token.OR
    	}
    	if wrap {
    		x = &ast.InterfaceType{Methods: &ast.FieldList{List: []*ast.Field{{Type: x}}}}
    		t := check.typ(x)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
Back to top