| 218 | } |
| 219 | |
| 220 | static FunctionDescriptor CreateDescriptor(absl::string_view name, |
| 221 | bool receiver_style, |
| 222 | bool is_strict) { |
| 223 | return CreateDescriptor(name, receiver_style, |
| 224 | {is_strict, /*is_contextual=*/false}); |
| 225 | } |
| 226 | |
| 227 | static FunctionDescriptor CreateDescriptor( |
| 228 | absl::string_view name, bool receiver_style, |
nothing calls this directly
no test coverage detected