#[cfg(test)]
mod tests;
use crate::syntax::{
ast::{node::Continue, Keyword, Punctuator},
lexer::TokenKind,
parser::{
cursor::{Cursor, SemicolonResult},
expression::LabelIdentifier,
AllowAwait, AllowYield, ParseError, TokenParser,
},
};
use boa_interner::Interner;
use boa_profiler::Profiler;
use std::io::Read;
#[derive(Debug, Clone, Copy)]
pub(super) struct ContinueStatement {
allow_yield: AllowYield,
allow_await: AllowAwait,
}
impl ContinueStatement {
pub(super) fn new<Y, A>(allow_yield: Y, allow_await: A) -> Self
where
Y: Into<AllowYield>,
A: Into<AllowAwait>,
{
Self {
allow_yield: allow_yield.into(),
allow_await: allow_await.into(),
}
}
}
impl<R> TokenParser<R> for ContinueStatement
where
R: Read,
{
type Output = Continue;
fn parse(
self,
cursor: &mut Cursor<R>,
interner: &mut Interner,
) -> Result<Self::Output, ParseError> {
let _timer = Profiler::global().start_event("ContinueStatement", "Parsing");
cursor.expect((Keyword::Continue, false), "continue statement", interner)?;
let label = if let SemicolonResult::Found(tok) = cursor.peek_semicolon(interner)? {
match tok {
Some(tok) if tok.kind() == &TokenKind::Punctuator(Punctuator::Semicolon) => {
let _next = cursor.next(interner)?;
}
_ => {}
}
None
} else {
let label =
LabelIdentifier::new(self.allow_yield, self.allow_await).parse(cursor, interner)?;
cursor.expect_semicolon("continue statement", interner)?;
Some(label)
};
Ok(Continue::new(label))
}
}