| 554 | } |
| 555 | |
| 556 | static FunctionDescriptor CreateDescriptor(absl::string_view name, |
| 557 | bool receiver_style, |
| 558 | bool is_strict) { |
| 559 | return CreateDescriptor( |
| 560 | name, receiver_style, |
| 561 | FunctionDescriptorOptions{is_strict, /*is_contextual=*/false}); |
| 562 | } |
| 563 | |
| 564 | static FunctionDescriptor CreateDescriptor( |
| 565 | absl::string_view name, bool receiver_style, |
nothing calls this directly
no test coverage detected