type github.com/evanw/esbuild/internal/bundler.bitSet

15 uses

	github.com/evanw/esbuild/internal/bundler (current package)
		bundler.go#L48: 	entryBits bitSet
		linker.go#L30: type bitSet struct {
		linker.go#L34: func newBitSet(bitCount uint) bitSet {
		linker.go#L35: 	return bitSet{make([]byte, (bitCount+7)/8)}
		linker.go#L38: func (bs bitSet) hasBit(bit uint) bool {
		linker.go#L42: func (bs bitSet) setBit(bit uint) {
		linker.go#L46: func (bs bitSet) equals(other bitSet) bool {
		linker.go#L50: func (bs bitSet) copyFrom(other bitSet) {
		linker.go#L54: func (bs *bitSet) bitwiseOrWith(other bitSet) {
		linker.go#L290: 	entryBits bitSet
		linker.go#L330: 	entryBits             bitSet
		linker.go#L3327: 	entryBits bitSet,