| 16 | }; |
| 17 | |
| 18 | struct MarkEvent { |
| 19 | explicit MarkEvent(MarkEventType type = MarkEventType::NodeStart); |
| 20 | |
| 21 | MarkEventType Type; |
| 22 | union { |
| 23 | struct { |
| 24 | std::size_t Parent; |
| 25 | LuaSyntaxNodeKind Kind; |
| 26 | } Start; |
| 27 | struct { |
| 28 | std::size_t Index; |
| 29 | LuaTokenKind Kind; |
| 30 | } Token; |
| 31 | |
| 32 | struct { |
| 33 | LuaTokenKind TokenKind; |
| 34 | LuaParserErrorKind ErrorKind; |
| 35 | } Error; |
| 36 | } U; |
| 37 | }; |
| 38 | |
| 39 | struct CompleteMarker; |
| 40 |
no outgoing calls
no test coverage detected