Commit c3533d7a authored by Yury Smolsky's avatar Yury Smolsky Committed by Daniel Martí

cmd/cover: remove unused global var and the unquote function

Change-Id: I52a39f2d8f1a296f23624e3ec577d9ad1b8302f1
Reviewed-on: https://go-review.googlesource.com/126555
Run-TryBot: Yury Smolsky <yury@smolsky.by>
TryBot-Result: Gobot Gobot <gobot@golang.org>
Reviewed-by: 's avatarAlan Donovan <adonovan@google.com>
parent 26d62b4c
...@@ -16,7 +16,6 @@ import ( ...@@ -16,7 +16,6 @@ import (
"log" "log"
"os" "os"
"sort" "sort"
"strconv"
"cmd/internal/edit" "cmd/internal/edit"
"cmd/internal/objabi" "cmd/internal/objabi"
...@@ -294,17 +293,6 @@ func (f *File) Visit(node ast.Node) ast.Visitor { ...@@ -294,17 +293,6 @@ func (f *File) Visit(node ast.Node) ast.Visitor {
return f return f
} }
// unquote returns the unquoted string.
func unquote(s string) string {
t, err := strconv.Unquote(s)
if err != nil {
log.Fatalf("cover: improperly quoted string %q\n", s)
}
return t
}
var slashslash = []byte("//")
func annotate(name string) { func annotate(name string) {
fset := token.NewFileSet() fset := token.NewFileSet()
content, err := ioutil.ReadFile(name) content, err := ioutil.ReadFile(name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment