mirror of
https://github.com/OffchainLabs/prysm.git
synced 2026-01-09 21:38:05 -05:00
* Added analyzer for detecting recursive/nested mutex read locks. * Added type assertion checks and removed unused 'iTypes' directory * Clean up * Bazel file fixes * Cleaned up code and added comments. Co-authored-by: Raul Jordan <raul@prysmaticlabs.com>
16 lines
412 B
Python
16 lines
412 B
Python
load("@prysm//tools/go:def.bzl", "go_library")
|
|
|
|
go_library(
|
|
name = "go_default_library",
|
|
srcs = [
|
|
"badlockswithmethods.go",
|
|
"badlockswithstructs.go",
|
|
"complexlocks.go",
|
|
"globallocks.go",
|
|
"nonrlocks.go",
|
|
"types.go",
|
|
],
|
|
importpath = "github.com/prysmaticlabs/prysm/tools/analyzers/recursivelock/testdata",
|
|
visibility = ["//visibility:public"],
|
|
)
|