Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for stmtFmt (0.06 sec)

  1. src/cmd/compile/internal/ir/fmt.go

    		} else {
    			fmt.Fprintf(s, "%v (type %v)", n, t)
    		}
    		return
    	}
    
    	// TODO inlining produces expressions with ninits. we can't print these yet.
    
    	if OpPrec[n.Op()] < 0 {
    		stmtFmt(n, s)
    		return
    	}
    
    	exprFmt(n, s, 0)
    }
    
    var OpPrec = []int{
    	OAPPEND:           8,
    	OBYTES2STR:        8,
    	OARRAYLIT:         8,
    	OSLICELIT:         8,
    	ORUNES2STR:        8,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
Back to top