| 534 | } |
| 535 | |
| 536 | static const FrameField* framePayload(const FrameDecl& frame) { |
| 537 | for (const auto& field : frame.fields) if (field.payload) return &field; |
| 538 | return nullptr; |
| 539 | } |
| 540 | |
| 541 | void optionalSemi() { |
| 542 | if (token_.kind == Tok::Semi) advance(); |
nothing calls this directly
no outgoing calls
no test coverage detected