Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for tcITab (0.12 sec)

  1. src/cmd/compile/internal/typecheck/expr.go

    		why := ImplementsExplain(n.Type(), t)
    		if why != "" {
    			base.Fatalf("impossible type assertion:\n\t%s", why)
    			n.SetType(nil)
    			return n
    		}
    	}
    	return n
    }
    
    // tcITab typechecks an OITAB node.
    func tcITab(n *ir.UnaryExpr) ir.Node {
    	n.X = Expr(n.X)
    	t := n.X.Type()
    	if t == nil {
    		n.SetType(nil)
    		return n
    	}
    	if !t.IsInterface() {
    		base.Fatalf("OITAB of %v", t)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/typecheck.go

    		n := n.(*ir.BinaryExpr)
    		return tcUnsafeString(n)
    
    	case ir.OUNSAFESTRINGDATA:
    		n := n.(*ir.UnaryExpr)
    		return tcUnsafeData(n)
    
    	case ir.OITAB:
    		n := n.(*ir.UnaryExpr)
    		return tcITab(n)
    
    	case ir.OIDATA:
    		// Whoever creates the OIDATA node must know a priori the concrete type at that moment,
    		// usually by just having checked the OITAB.
    		n := n.(*ir.UnaryExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 20 19:08:34 UTC 2024
    - 30.5K bytes
    - Viewed (0)
Back to top