aboutsummaryrefslogtreecommitdiff
path: root/internal/pkgbits/support.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/pkgbits/support.go')
-rw-r--r--internal/pkgbits/support.go17
1 files changed, 17 insertions, 0 deletions
diff --git a/internal/pkgbits/support.go b/internal/pkgbits/support.go
new file mode 100644
index 000000000..ad26d3b28
--- /dev/null
+++ b/internal/pkgbits/support.go
@@ -0,0 +1,17 @@
+// Copyright 2022 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.
+
+package pkgbits
+
+import "fmt"
+
+func assert(b bool) {
+ if !b {
+ panic("assertion failed")
+ }
+}
+
+func errorf(format string, args ...interface{}) {
+ panic(fmt.Errorf(format, args...))
+}