| 41 | static constexpr char kMathMax[] = "math.@max"; |
| 42 | |
| 43 | bool IsTargetNamespace(const Expr &target) { |
| 44 | return target.has_ident_expr() && |
| 45 | target.ident_expr().name() == kMathNamespace; |
| 46 | } |
| 47 | |
| 48 | bool IsValidArgType(const Expr &arg) { |
| 49 | return absl::visit( |
no test coverage detected