use crate::{
syntax::{
ast::{
node::{
declaration::{Declaration, DeclarationList},
Node,
},
Keyword, Punctuator,
},
lexer::TokenKind,
parser::{
cursor::{Cursor, SemicolonResult},
expression::Initializer,
statement::{ArrayBindingPattern, BindingIdentifier, ObjectBindingPattern},
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,
const_init_required: bool,
}
impl LexicalDeclaration {
pub(super) fn new<I, Y, A>(
allow_in: I,
allow_yield: Y,
allow_await: A,
const_init_required: 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(),
const_init_required,
}
}
}
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,
self.const_init_required,
)
.parse(cursor),
TokenKind::Keyword(Keyword::Let) => BindingList::new(
self.allow_in,
self.allow_yield,
self.allow_await,
false,
self.const_init_required,
)
.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,
const_init_required: bool,
}
impl BindingList {
fn new<I, Y, A>(
allow_in: I,
allow_yield: Y,
allow_await: A,
is_const: bool,
const_init_required: 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,
const_init_required,
}
}
}
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 decl = LexicalBinding::new(self.allow_in, self.allow_yield, self.allow_await)
.parse(cursor)?;
if self.is_const {
if self.const_init_required {
let init_is_some = match &decl {
Declaration::Identifier { init, .. } if init.is_some() => true,
Declaration::Pattern(p) if p.init().is_some() => true,
_ => false,
};
if init_is_some {
const_decls.push(decl);
} else {
return Err(ParseError::expected(
vec![TokenKind::Punctuator(Punctuator::Assign)],
cursor.next()?.ok_or(ParseError::AbruptEnd)?,
"const declaration",
));
}
} else {
const_decls.push(decl)
}
} else {
let_decls.push(decl);
}
match cursor.peek_semicolon()? {
SemicolonResult::Found(_) => break,
SemicolonResult::NotFound(tk)
if tk.kind() == &TokenKind::Keyword(Keyword::Of)
|| tk.kind() == &TokenKind::Keyword(Keyword::In) =>
{
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(DeclarationList::Const(const_decls.into()).into())
} else {
Ok(DeclarationList::Let(let_decls.into()).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 = Declaration;
fn parse(self, cursor: &mut Cursor<R>) -> Result<Self::Output, ParseError> {
let _timer = BoaProfiler::global().start_event("LexicalBinding", "Parsing");
let peek_token = cursor.peek(0)?.ok_or(ParseError::AbruptEnd)?;
match peek_token.kind() {
TokenKind::Punctuator(Punctuator::OpenBlock) => {
let bindings =
ObjectBindingPattern::new(self.allow_in, 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(Declaration::new_with_object_pattern(bindings, init))
}
TokenKind::Punctuator(Punctuator::OpenBracket) => {
let bindings =
ArrayBindingPattern::new(self.allow_in, 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(Declaration::new_with_array_pattern(bindings, init))
}
_ => {
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(true, self.allow_yield, self.allow_await)
.parse(cursor)?,
)
} else {
None
}
} else {
None
};
Ok(Declaration::new_with_identifier(ident, init))
}
}
}
}