Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for walkBinary (0.16 sec)

  1. src/go/printer/nodes.go

    			break
    		}
    		h4, h5, mp := walkBinary(l)
    		has4 = has4 || h4
    		has5 = has5 || h5
    		maxProblem = max(maxProblem, mp)
    	}
    
    	switch r := e.Y.(type) {
    	case *ast.BinaryExpr:
    		if r.Op.Precedence() <= e.Op.Precedence() {
    			// parens will be inserted.
    			// pretend this is an *ast.ParenExpr and do nothing.
    			break
    		}
    		h4, h5, mp := walkBinary(r)
    		has4 = has4 || h4
    		has5 = has5 || h5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
Back to top