github.com/evanw/esbuild/internal/fs.lazybuf.w (field)

19 uses

	github.com/evanw/esbuild/internal/fs (current package)
		filepath.go#L300: 	w          int
		filepath.go#L314: 		if b.w < len(b.path) && b.path[b.w] == c {
		filepath.go#L315: 			b.w++
		filepath.go#L319: 		copy(b.buf, b.path[:b.w])
		filepath.go#L321: 	b.buf[b.w] = c
		filepath.go#L322: 	b.w++
		filepath.go#L327: 		return b.volAndPath[:b.volLen+b.w]
		filepath.go#L329: 	return b.volAndPath[:b.volLen] + string(b.buf[:b.w])
		filepath.go#L403: 			case out.w > dotdot:
		filepath.go#L405: 				out.w--
		filepath.go#L406: 				for out.w > dotdot && !fp.isPathSeparator(out.index(out.w)) {
		filepath.go#L407: 					out.w--
		filepath.go#L411: 				if out.w > 0 {
		filepath.go#L416: 				dotdot = out.w
		filepath.go#L421: 			if rooted && out.w != 1 || !rooted && out.w != 0 {
		filepath.go#L432: 	if out.w == 0 {