| 874 | } |
| 875 | |
| 876 | void ParseContext::parse_startsection() { |
| 877 | tok_.expect(TokenType::LParen); |
| 878 | tok_.expect_keyword("start"); |
| 879 | module_.start = parse_funcidx(); |
| 880 | tok_.expect(TokenType::RParen); |
| 881 | } |
| 882 | |
| 883 | void ParseContext::parse_elemsection() { |
| 884 | tok_.expect(TokenType::LParen); |
nothing calls this directly
no test coverage detected