use crate::syntax::lexer::TokenKind;
use crate::{
syntax::{
ast::{
node::{ConstDecl, ConstDeclList, LetDecl, LetDeclList, Node},
Keyword, Punctuator,
},
parser::{
cursor::{Cursor, SemicolonResult},
expression::Initializer,
statement::BindingIdentifier,
AllowAwait, AllowIn, AllowYield, ParseError, ParseResult, TokenParser,
},
},
BoaProfiler,
};
use std::io::Read;
#[derive(Debug, Clone, Copy)]
pub(super) struct LexicalDeclaration {
allow_in: AllowIn,
allow_yield: AllowYield,
allow_await: AllowAwait,
}
impl LexicalDeclaration {
pub(super) fn new<I, Y, A>(allow_in: I, allow_yield: Y, allow_await: A) -> Self
where
I: Into<AllowIn>,
Y: Into<AllowYield>,
A: Into<AllowAwait>,
{
Self {
allow_in: allow_in.into(),
allow_yield: allow_yield.into(),
allow_await: allow_await.into(),
}
}
}
impl<R> TokenParser<R> for LexicalDeclaration
where
R: Read,
{
type Output = Node;
fn parse(self, cursor: &mut Cursor<R>) -> ParseResult {
let _timer = BoaProfiler::global().start_event("LexicalDeclaration", "Parsing");
let tok = cursor.next()?.ok_or(ParseError::AbruptEnd)?;
match tok.kind() {
TokenKind::Keyword(Keyword::Const) => {
BindingList::new(self.allow_in, self.allow_yield, self.allow_await, true)
.parse(cursor)
}
TokenKind::Keyword(Keyword::Let) => {
BindingList::new(self.allow_in, self.allow_yield, self.allow_await, false)
.parse(cursor)
}
_ => unreachable!("unknown token found: {:?}", tok),
}
}
}
#[derive(Debug, Clone, Copy)]
struct BindingList {
allow_in: AllowIn,
allow_yield: AllowYield,
allow_await: AllowAwait,
is_const: bool,
}
impl BindingList {
fn new<I, Y, A>(allow_in: I, allow_yield: Y, allow_await: A, is_const: bool) -> Self
where
I: Into<AllowIn>,
Y: Into<AllowYield>,
A: Into<AllowAwait>,
{
Self {
allow_in: allow_in.into(),
allow_yield: allow_yield.into(),
allow_await: allow_await.into(),
is_const,
}
}
}
impl<R> TokenParser<R> for BindingList
where
R: Read,
{
type Output = Node;
fn parse(self, cursor: &mut Cursor<R>) -> ParseResult {
let _timer = BoaProfiler::global().start_event("BindingList", "Parsing");
let mut let_decls = Vec::new();
let mut const_decls = Vec::new();
loop {
let (ident, init) =
LexicalBinding::new(self.allow_in, self.allow_yield, self.allow_await)
.parse(cursor)?;
if self.is_const {
if let Some(init) = init {
const_decls.push(ConstDecl::new(ident, init));
} else {
return Err(ParseError::expected(
vec![TokenKind::Punctuator(Punctuator::Assign)],
cursor.next()?.ok_or(ParseError::AbruptEnd)?,
"const declaration",
));
}
} else {
let_decls.push(LetDecl::new(ident, init));
}
match cursor.peek_semicolon()? {
SemicolonResult::Found(_) => break,
SemicolonResult::NotFound(tk)
if tk.kind() == &TokenKind::Punctuator(Punctuator::Comma) =>
{
let _ = cursor.next()?;
}
_ => {
return Err(ParseError::expected(
vec![
TokenKind::Punctuator(Punctuator::Semicolon),
TokenKind::LineTerminator,
],
cursor.next()?.ok_or(ParseError::AbruptEnd)?,
"lexical declaration binding list",
))
}
}
}
if self.is_const {
Ok(ConstDeclList::from(const_decls).into())
} else {
Ok(LetDeclList::from(let_decls).into())
}
}
}
struct LexicalBinding {
allow_in: AllowIn,
allow_yield: AllowYield,
allow_await: AllowAwait,
}
impl LexicalBinding {
fn new<I, Y, A>(allow_in: I, allow_yield: Y, allow_await: A) -> Self
where
I: Into<AllowIn>,
Y: Into<AllowYield>,
A: Into<AllowAwait>,
{
Self {
allow_in: allow_in.into(),
allow_yield: allow_yield.into(),
allow_await: allow_await.into(),
}
}
}
impl<R> TokenParser<R> for LexicalBinding
where
R: Read,
{
type Output = (Box<str>, Option<Node>);
fn parse(self, cursor: &mut Cursor<R>) -> Result<Self::Output, ParseError> {
let _timer = BoaProfiler::global().start_event("LexicalBinding", "Parsing");
let ident = BindingIdentifier::new(self.allow_yield, self.allow_await).parse(cursor)?;
let init = if let Some(t) = cursor.peek(0)? {
if *t.kind() == TokenKind::Punctuator(Punctuator::Assign) {
Some(
Initializer::new(self.allow_in, self.allow_yield, self.allow_await)
.parse(cursor)?,
)
} else {
None
}
} else {
None
};
Ok((ident, init))
}
}