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

7 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L127: 	BinOpMul
		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#L3626: 			left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpMul, Left: left, Right: p.parseExpr(js_ast.LMultiply)}}
		js_parser.go#L10300: 		case js_ast.BinOpMul:
		js_parser.go#L10410: 				return p.lowerPrivateSetBinOp(target, loc, private, js_ast.BinOpMul, e.Right), exprOut{}