MCPcopy Create free account
hub / github.com/AlenVelocity/MeowScript / parse_continue_statement

Method parse_continue_statement

src/parser.rs:183–189  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

181 }
182
183 pub fn parse_continue_statement(&mut self) -> Option<Statement> {
184 self.next_token();
185 while !self.current_token(Token::Semicolon) {
186 self.next_token();
187 }
188 Some(Statement::Continue)
189 }
190
191 fn parse_typof_expr(&mut self) -> Option<Expr> {
192 self.next_token();

Callers 1

parse_statementMethod · 0.80

Calls 2

current_tokenMethod · 0.80
next_tokenMethod · 0.45

Tested by

no test coverage detected