use crate::syntax::{
ast::{node::Spread, Node, Punctuator},
lexer::{InputElement, TokenKind},
parser::{
expression::AssignmentExpression, AllowAwait, AllowYield, Cursor, ParseError, TokenParser,
},
};
use boa_interner::Interner;
use boa_profiler::Profiler;
use std::io::Read;
#[derive(Debug, Clone, Copy)]
pub(in crate::syntax::parser::expression) struct Arguments {
allow_yield: AllowYield,
allow_await: AllowAwait,
}
impl Arguments {
pub(in crate::syntax::parser::expression) 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 Arguments
where
R: Read,
{
type Output = Box<[Node]>;
fn parse(
self,
cursor: &mut Cursor<R>,
interner: &mut Interner,
) -> Result<Self::Output, ParseError> {
let _timer = Profiler::global().start_event("Arguments", "Parsing");
cursor.expect(Punctuator::OpenParen, "arguments", interner)?;
let mut args = Vec::new();
loop {
let next_token = cursor.peek(0, interner)?.ok_or(ParseError::AbruptEnd)?;
match next_token.kind() {
TokenKind::Punctuator(Punctuator::CloseParen) => {
cursor.next(interner)?.expect(") token vanished"); break;
}
TokenKind::Punctuator(Punctuator::Comma) => {
let next_token = cursor.next(interner)?.expect(", token vanished");
if args.is_empty() {
return Err(ParseError::unexpected(
next_token.to_string(interner),
next_token.span(),
None,
));
}
if cursor.next_if(Punctuator::CloseParen, interner)?.is_some() {
break;
}
}
_ => {
if !args.is_empty() {
return Err(ParseError::expected(
[",".to_owned(), "}".to_owned()],
next_token.to_string(interner),
next_token.span(),
"argument list",
));
}
}
}
if cursor.next_if(Punctuator::Spread, interner)?.is_some() {
args.push(
Spread::new(
AssignmentExpression::new(None, true, self.allow_yield, self.allow_await)
.parse(cursor, interner)?,
)
.into(),
);
} else {
cursor.set_goal(InputElement::RegExp);
args.push(
AssignmentExpression::new(None, true, self.allow_yield, self.allow_await)
.parse(cursor, interner)?,
);
}
}
Ok(args.into_boxed_slice())
}
}