This repository has been archived by the owner on Oct 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dramatically Increase performance of tool (#107)
* done * fix hardcode * remove import * remove comments * Revert "remove comments" This reverts commit e74459a. * Revert "remove import" This reverts commit 5aa5ffb. * Revert "fix hardcode" This reverts commit e5e62ed. * Revert "done" This reverts commit 0fe7a9e. * remade logic to support not only local modules * remove unused variables * rename variables * remade on package.Load function * make with one call * go mod tidy * fix potential bug with name collisions because of use HasSuffix * a bit optimize cycles and rename function to convertProfile back * change from filepath to path --------- Co-authored-by: artemikhaylov <[email protected]>
- Loading branch information
Showing
3 changed files
with
70 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,18 @@ | ||
module github.com/axw/gocov | ||
|
||
go 1.12 | ||
go 1.22.0 | ||
|
||
toolchain go1.22.7 | ||
|
||
require ( | ||
github.com/stretchr/testify v1.7.1 | ||
golang.org/x/tools v0.0.0-20190617190820-da514acc4774 | ||
golang.org/x/tools v0.13.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
golang.org/x/mod v0.21.0 // indirect | ||
golang.org/x/sys v0.12.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters