| 315 | } |
| 316 | |
| 317 | static FunctionDescriptor CreateDescriptor(absl::string_view name, |
| 318 | bool receiver_style, |
| 319 | bool is_strict) { |
| 320 | return CreateDescriptor( |
| 321 | name, receiver_style, |
| 322 | FunctionDescriptorOptions{is_strict, /*is_contextual=*/false}); |
| 323 | } |
| 324 | |
| 325 | static FunctionDescriptor CreateDescriptor( |
| 326 | absl::string_view name, bool receiver_style, |
nothing calls this directly
no test coverage detected