Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for endByte (0.4 sec)

  1. src/cmd/cover/cover.go

    	for i := 1; i < len(t); i++ {
    		if t[i-1].endByte > t[i].startByte {
    			fmt.Fprintf(os.Stderr, "cover: internal error: block %d overlaps block %d\n", t[i-1].index, t[i].index)
    			// Note: error message is in byte positions, not token positions.
    			fmt.Fprintf(os.Stderr, "\t%s:#%d,#%d %s:#%d,#%d\n",
    				f.name, f.offset(t[i-1].startByte), f.offset(t[i-1].endByte),
    				f.name, f.offset(t[i].startByte), f.offset(t[i].endByte))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top