Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/testing/cover.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import (
// NOTE: This struct is internal to the testing infrastructure and may change.
// It is not covered (yet) by the Go 1 compatibility guidelines.
type CoverBlock struct {
Line0 uint32
Col0 uint16
Line1 uint32
Col1 uint16
Stmts uint16
Line0 uint32 // line number for block start
Col0 uint16 // column number for block start
Line1 uint32 // line number for block end
Col1 uint16 // column number for block end
Stmts uint16 // number of statements included in this block
}

var cover Cover
Expand Down