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

7 uses

	github.com/evanw/esbuild/internal/js_ast (current package)
		js_ast.go#L129: 	BinOpRem
		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#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#L10314: 		case js_ast.BinOpRem:
		js_parser.go#L10420: 				return p.lowerPrivateSetBinOp(target, loc, private, js_ast.BinOpRem, e.Right), exprOut{}