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

10 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L47: 	LMultiply
		js_ast.go#L200: 	{"*", LMultiply, false},
		js_ast.go#L201: 	{"/", LMultiply, false},
		js_ast.go#L202: 	{"%", LMultiply, false},

	github.com/evanw/esbuild/internal/js_parser
		js_parser.go#L3622: 			if level >= js_ast.LMultiply {
		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#L3650: 			if level >= js_ast.LMultiply {
		js_parser.go#L3654: 			left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpRem, Left: left, Right: p.parseExpr(js_ast.LMultiply)}}
		js_parser.go#L3664: 			if level >= js_ast.LMultiply {
		js_parser.go#L3668: 			left = js_ast.Expr{Loc: left.Loc, Data: &js_ast.EBinary{Op: js_ast.BinOpDiv, Left: left, Right: p.parseExpr(js_ast.LMultiply)}}