mirror of
https://github.com/golang/go
synced 2024-11-18 16:24:42 -07:00
cb1345f3a3
Follow the conventions here: https://github.com/golang/go/wiki/Deprecated. I wonder if we could just delete it... Change-Id: I6559bab0551304ff5e109a2dffd4ff86afba5203 Reviewed-on: https://go-review.googlesource.com/c/tools/+/234898 Run-TryBot: Rebecca Stambler <rstambler@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Peter Weinberger <pjw@google.com>
25 lines
1008 B
Go
25 lines
1008 B
Go
// Copyright 2013 The Go Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
/*
|
|
Cover is a program for analyzing the coverage profiles generated by
|
|
'go test -coverprofile=cover.out'.
|
|
|
|
Deprecated: For Go releases 1.5 and later, this tool lives in the
|
|
standard repository. The code here is not maintained.
|
|
|
|
Cover is also used by 'go test -cover' to rewrite the source code with
|
|
annotations to track which parts of each function are executed.
|
|
It operates on one Go source file at a time, computing approximate
|
|
basic block information by studying the source. It is thus more portable
|
|
than binary-rewriting coverage tools, but also a little less capable.
|
|
For instance, it does not probe inside && and || expressions, and can
|
|
be mildly confused by single statements with multiple function literals.
|
|
|
|
For usage information, please see:
|
|
go help testflag
|
|
go tool cover -help
|
|
*/
|
|
package main // import "golang.org/x/tools/cmd/cover"
|