Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for inNonInitFunction (0.21 sec)

  1. src/cmd/compile/internal/walk/complit.go

    // to execute concurrently without clobbering each others' data.
    type initContext uint8
    
    const (
    	inInitFunction initContext = iota
    	inNonInitFunction
    )
    
    func (c initContext) String() string {
    	if c == inInitFunction {
    		return "inInitFunction"
    	}
    	return "inNonInitFunction"
    }
    
    // readonlystaticname returns a name backed by a read-only static data symbol.
    func readonlystaticname(t *types.Type) *ir.Name {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
Back to top