Skip to content

Commit

Permalink
Release 1.0.3
Browse files Browse the repository at this point in the history
Changes since 1.0.2:

Instrument parenthesized expressions, channel receive expressions,
composite literals, type switch statements.

Add newline after printing a line to stderr.
  • Loading branch information
rillig committed Nov 24, 2022
1 parent 640392a commit 07c6d4b
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import (
"strings"
)

const version = "1.0.3-snapshot"
const version = "1.0.3"

var exit = os.Exit

Expand Down Expand Up @@ -247,17 +247,17 @@ func (g *gobco) prepareTmp() {
}

func (g *gobco) instrument() {
in :=instrumenter{
g.coverTest,
g.immediately,
g.listAll,
nil,
nil,
false,
map[ast.Node]bool{},
"",
0,
}
in := instrumenter{
g.coverTest,
g.immediately,
g.listAll,
nil,
nil,
false,
map[ast.Node]bool{},
"",
0,
}

for _, arg := range g.args {
instrDst := g.file(arg.instrDir)
Expand Down

0 comments on commit 07c6d4b

Please sign in to comment.