Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for commentTextAt (0.1 sec)

  1. src/go/printer/gobuild.go

    		for _, pos := range p.plusBuild {
    			y, err := constraint.Parse(p.commentTextAt(pos))
    			if err != nil {
    				x = nil
    				break
    			}
    			if x == nil {
    				x = y
    			} else {
    				x = &constraint.AndExpr{X: x, Y: y}
    			}
    		}
    	case 1:
    		// Parse //go:build expression.
    		x, _ = constraint.Parse(p.commentTextAt(p.goBuild[0]))
    	}
    
    	var block []byte
    	if x == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top