const github.com/evanw/esbuild/internal/js_ast.BinOpSub

11 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L126: 	BinOpSub
		js_ast.go#L827: 		case BinOpSub, BinOpMul, BinOpDiv, BinOpRem,

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L693: 			js_ast.BinOpSub, js_ast.BinOpMul, js_ast.BinOpDiv, js_ast.BinOpRem, js_ast.BinOpPow,
		js_parser.go#L861: 			js_ast.BinOpSub, js_ast.BinOpMul, js_ast.BinOpDiv, js_ast.BinOpRem, js_ast.BinOpPow,
		js_parser.go#L3612: 			left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpSub, Left: left, Right: p.parseExpr(js_ast.LAdd)}}
		js_parser.go#L10293: 		case js_ast.BinOpSub:
		js_parser.go#L10405: 				return p.lowerPrivateSetBinOp(target, loc, private, js_ast.BinOpSub, e.Right), exprOut{}
		js_parser.go#L10708: 					return p.lowerPrivateSetUnOp(target, loc, private, js_ast.BinOpSub, false), exprOut{}
		js_parser.go#L10718: 					return p.lowerPrivateSetUnOp(target, loc, private, js_ast.BinOpSub, true), exprOut{}

	github.com/evanw/esbuild/internal/js_printer
		js_printer.go#L978: 			((prev == js_ast.BinOpSub || prev == js_ast.UnOpNeg) && (next == js_ast.BinOpSub || next == js_ast.UnOpNeg || next == js_ast.UnOpPreDec)) ||