Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for NonNil (0.15 sec)

  1. src/runtime/crash_test.go

    			}
    			c <- struct{}{}
    		}()
    		runtime.Goexit()
    	}()
    	// Note: if the defer fails to run, we will get a deadlock here
    	<-c
    }
    
    func TestGoNil(t *testing.T) {
    	output := runTestProg(t, "testprog", "GoNil")
    	want := "go of nil func value"
    	if !strings.Contains(output, want) {
    		t.Fatalf("output:\n%s\n\nwant output containing: %s", output, want)
    	}
    }
    
    func TestMainGoroutineID(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 19:46:10 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/typecheck/stmt.go

    		}
    
    		// Recognize a few common expressions that can be evaluated within
    		// the wrapper, so we don't need to allocate space for them within
    		// the closure.
    		switch arg.Op() {
    		case ir.OLITERAL, ir.ONIL, ir.OMETHEXPR, ir.ONEW:
    			return
    		case ir.ONAME:
    			arg := arg.(*ir.Name)
    			if arg.Class == ir.PFUNC {
    				return // reference to global function
    			}
    		case ir.OADDR:
    			arg := arg.(*ir.AddrExpr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 15:10:54 UTC 2023
    - 17.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/assign.go

    		ir.OANDNOT,
    		ir.OBITNOT,
    		ir.OCONV,
    		ir.OCONVIFACE,
    		ir.OCONVNOP,
    		ir.ODIV,
    		ir.ODOT,
    		ir.ODOTTYPE,
    		ir.OLITERAL,
    		ir.OLSH,
    		ir.OMOD,
    		ir.OMUL,
    		ir.ONEG,
    		ir.ONIL,
    		ir.OOR,
    		ir.OOROR,
    		ir.OPAREN,
    		ir.OPLUS,
    		ir.ORSH,
    		ir.OSUB,
    		ir.OXOR:
    		return false
    	}
    
    	// Be conservative.
    	return true
    }
    
    // expand append(l1, l2...) to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:09:06 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/switch.go

    	if cond.Op() == ir.OBYTES2STR && allCaseExprsAreSideEffectFree(sw) {
    		cond := cond.(*ir.ConvExpr)
    		cond.SetOp(ir.OBYTES2STRTMP)
    	}
    
    	cond = walkExpr(cond, sw.PtrInit())
    	if cond.Op() != ir.OLITERAL && cond.Op() != ir.ONIL {
    		cond = copyExpr(cond, cond.Type(), &sw.Compiled)
    	}
    
    	base.Pos = lno
    
    	s := exprSwitch{
    		pos:      lno,
    		exprname: cond,
    	}
    
    	var defaultGoto ir.Node
    	var body ir.Nodes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
Back to top