func github.com/evanw/esbuild/internal/sourcemap.DecodeVLQ

5 uses

	github.com/evanw/esbuild/internal/sourcemap (current package)
		sourcemap.go#L113: func DecodeVLQ(encoded []byte, start int) (int, int) {

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L70: 	generatedColumn, i := sourcemap.DecodeVLQ(sourceMap, 0)
		js_printer.go#L71: 	sourceIndex, i := sourcemap.DecodeVLQ(sourceMap, i)
		js_printer.go#L72: 	originalLine, i := sourcemap.DecodeVLQ(sourceMap, i)
		js_printer.go#L73: 	originalColumn, i := sourcemap.DecodeVLQ(sourceMap, i)