use derive_enum_from_into::EnumFrom;
use iterator_endiate::EndiateIteratorExt;
use tokenizer_lib::{sized_tokens::TokenReaderWithTokenEnds, Token};
use visitable_derive::Visitable;
use super::{ASTNode, Span, TSXToken, TokenReader};
use crate::{
declarations::{export::Exportable, ExportDeclaration},
expect_semi_colon, Declaration, Decorated, ParseOptions, ParseResult, Statement, TSXKeyword,
VisitOptions, Visitable,
};
#[derive(Debug, Clone, PartialEq, Visitable, get_field_by_type::GetFieldByType, EnumFrom)]
#[get_field_by_type_target(Span)]
#[cfg_attr(feature = "self-rust-tokenize", derive(self_rust_tokenize::SelfRustTokenize))]
#[cfg_attr(feature = "serde-serialize", derive(serde::Serialize))]
#[visit_self(under statement)]
pub enum StatementOrDeclaration {
Statement(Statement),
Declaration(Declaration),
}
impl StatementOrDeclaration {
pub(crate) fn requires_semi_colon(&self) -> bool {
match self {
StatementOrDeclaration::Statement(stmt) => stmt.requires_semi_colon(),
StatementOrDeclaration::Declaration(dec) => matches!(
dec,
Declaration::Variable(..)
| Declaration::Export(Decorated {
on: ExportDeclaration::Default { .. }
| ExportDeclaration::Variable {
exported: Exportable::ImportAll { .. }
| Exportable::ImportParts { .. } | Exportable::Parts { .. },
..
},
..
}) | Declaration::Import(..)
),
}
}
}
impl ASTNode for StatementOrDeclaration {
fn get_position(&self) -> &Span {
match self {
StatementOrDeclaration::Statement(item) => item.get_position(),
StatementOrDeclaration::Declaration(item) => item.get_position(),
}
}
fn from_reader(
reader: &mut impl TokenReader<TSXToken, crate::TokenStart>,
state: &mut crate::ParsingState,
options: &ParseOptions,
) -> ParseResult<Self> {
if Declaration::is_declaration_start(reader, options) {
let dec = Declaration::from_reader(reader, state, options)?;
Ok(StatementOrDeclaration::Declaration(dec))
} else {
if let Some(Token(TSXToken::Keyword(TSXKeyword::Enum | TSXKeyword::Type), _)) =
reader.peek()
{
if reader.peek_n(1).map_or(false, |t| !t.0.is_symbol()) {
return Ok(StatementOrDeclaration::Declaration(Declaration::from_reader(
reader, state, options,
)?));
}
}
let stmt = Statement::from_reader(reader, state, options)?;
Ok(StatementOrDeclaration::Statement(stmt))
}
}
fn to_string_from_buffer<T: source_map::ToString>(
&self,
buf: &mut T,
options: &crate::ToStringOptions,
depth: u8,
) {
match self {
StatementOrDeclaration::Statement(item) => {
item.to_string_from_buffer(buf, options, depth);
}
StatementOrDeclaration::Declaration(item) => {
item.to_string_from_buffer(buf, options, depth);
}
}
}
}
#[derive(Debug, Clone, get_field_by_type::GetFieldByType)]
#[get_field_by_type_target(Span)]
#[cfg_attr(feature = "self-rust-tokenize", derive(self_rust_tokenize::SelfRustTokenize))]
#[cfg_attr(feature = "serde-serialize", derive(serde::Serialize))]
pub struct Block(pub Vec<StatementOrDeclaration>, pub Span);
impl Eq for Block {}
impl PartialEq for Block {
fn eq(&self, other: &Self) -> bool {
self.0 == other.0
}
}
pub struct BlockLike<'a> {
pub items: &'a Vec<StatementOrDeclaration>,
}
pub struct BlockLikeMut<'a> {
pub items: &'a mut Vec<StatementOrDeclaration>,
}
impl<'a> From<&'a Block> for BlockLike<'a> {
fn from(block: &'a Block) -> Self {
BlockLike { items: &block.0 }
}
}
impl<'a> From<&'a mut Block> for BlockLikeMut<'a> {
fn from(block: &'a mut Block) -> Self {
BlockLikeMut { items: &mut block.0 }
}
}
impl ASTNode for Block {
fn from_reader(
reader: &mut impl TokenReader<TSXToken, crate::TokenStart>,
state: &mut crate::ParsingState,
options: &ParseOptions,
) -> ParseResult<Self> {
let start = reader.expect_next(TSXToken::OpenBrace)?;
let items = parse_statements_and_declarations(reader, state, options)?;
let end_span = reader.expect_next_get_end(TSXToken::CloseBrace)?;
Ok(Self(items, start.union(end_span)))
}
fn to_string_from_buffer<T: source_map::ToString>(
&self,
buf: &mut T,
options: &crate::ToStringOptions,
depth: u8,
) {
buf.push('{');
if depth > 0 && options.pretty {
buf.push_new_line();
}
statements_and_declarations_to_string(&self.0, buf, options, depth);
if options.pretty && !self.0.is_empty() {
buf.push_new_line();
}
if depth > 1 {
options.add_indent(depth - 1, buf);
}
buf.push('}');
}
fn get_position(&self) -> &Span {
&self.1
}
}
impl Block {
pub fn iter(&self) -> core::slice::Iter<'_, StatementOrDeclaration> {
self.0.iter()
}
pub fn iter_mut(&mut self) -> core::slice::IterMut<'_, StatementOrDeclaration> {
self.0.iter_mut()
}
}
impl Visitable for Block {
fn visit<TData>(
&self,
visitors: &mut (impl crate::VisitorReceiver<TData> + ?Sized),
data: &mut TData,
options: &VisitOptions,
chain: &mut temporary_annex::Annex<crate::visiting::Chain>,
) {
if options.visit_nested_blocks || chain.is_empty() {
{
visitors.visit_block(&crate::block::BlockLike { items: &self.0 }, data, chain);
}
let iter = self.iter();
if options.reverse_statements {
iter.rev().for_each(|item| item.visit(visitors, data, options, chain));
} else {
iter.for_each(|item| item.visit(visitors, data, options, chain));
}
}
}
fn visit_mut<TData>(
&mut self,
visitors: &mut (impl crate::VisitorMutReceiver<TData> + ?Sized),
data: &mut TData,
options: &VisitOptions,
chain: &mut temporary_annex::Annex<crate::visiting::Chain>,
) {
if options.visit_nested_blocks || chain.is_empty() {
{
visitors.visit_block_mut(
&mut crate::block::BlockLikeMut { items: &mut self.0 },
data,
chain,
);
}
let iter_mut = self.iter_mut();
if options.reverse_statements {
iter_mut.for_each(|statement| statement.visit_mut(visitors, data, options, chain));
} else {
iter_mut
.rev()
.for_each(|statement| statement.visit_mut(visitors, data, options, chain));
}
}
}
}
#[derive(Debug, Clone, PartialEq, Eq, EnumFrom)]
#[cfg_attr(feature = "self-rust-tokenize", derive(self_rust_tokenize::SelfRustTokenize))]
#[cfg_attr(feature = "serde-serialize", derive(serde::Serialize))]
pub enum BlockOrSingleStatement {
Braced(Block),
SingleStatement(Box<Statement>),
}
impl Visitable for BlockOrSingleStatement {
fn visit<TData>(
&self,
visitors: &mut (impl crate::visiting::VisitorReceiver<TData> + ?Sized),
data: &mut TData,
options: &VisitOptions,
chain: &mut temporary_annex::Annex<crate::visiting::Chain>,
) {
match self {
BlockOrSingleStatement::Braced(b) => {
b.visit(visitors, data, options, chain);
}
BlockOrSingleStatement::SingleStatement(s) => {
s.visit(visitors, data, options, chain);
visitors.visit_statement(
crate::visiting::BlockItem::SingleStatement(s),
data,
chain,
);
}
}
}
fn visit_mut<TData>(
&mut self,
visitors: &mut (impl crate::visiting::VisitorMutReceiver<TData> + ?Sized),
data: &mut TData,
options: &VisitOptions,
chain: &mut temporary_annex::Annex<crate::visiting::Chain>,
) {
match self {
BlockOrSingleStatement::Braced(ref mut b) => {
b.visit_mut(visitors, data, options, chain);
}
BlockOrSingleStatement::SingleStatement(ref mut s) => {
s.visit_mut(visitors, data, options, chain);
visitors.visit_statement_mut(
crate::visiting::BlockItemMut::SingleStatement(s),
data,
chain,
);
}
}
}
}
impl From<Statement> for BlockOrSingleStatement {
fn from(stmt: Statement) -> Self {
Self::SingleStatement(Box::new(stmt))
}
}
impl ASTNode for BlockOrSingleStatement {
fn get_position(&self) -> &Span {
match self {
BlockOrSingleStatement::Braced(blk) => blk.get_position(),
BlockOrSingleStatement::SingleStatement(stmt) => stmt.get_position(),
}
}
fn from_reader(
reader: &mut impl TokenReader<TSXToken, crate::TokenStart>,
state: &mut crate::ParsingState,
options: &ParseOptions,
) -> ParseResult<Self> {
let stmt = Statement::from_reader(reader, state, options)?;
Ok(match stmt {
Statement::Block(blk) => Self::Braced(blk),
stmt => {
if stmt.requires_semi_colon() {
expect_semi_colon(reader, &state.line_starts, stmt.get_position().start)?;
}
Box::new(stmt).into()
}
})
}
fn to_string_from_buffer<T: source_map::ToString>(
&self,
buf: &mut T,
options: &crate::ToStringOptions,
depth: u8,
) {
match self {
BlockOrSingleStatement::Braced(block) => {
block.to_string_from_buffer(buf, options, depth);
}
BlockOrSingleStatement::SingleStatement(stmt) => {
if options.pretty && !options.single_statement_on_new_line {
buf.push_new_line();
options.add_gap(buf);
stmt.to_string_from_buffer(buf, options, depth + 1);
} else {
stmt.to_string_from_buffer(buf, options, depth);
if stmt.requires_semi_colon() {
buf.push(';');
}
}
}
}
}
}
pub(crate) fn parse_statements_and_declarations(
reader: &mut impl TokenReader<TSXToken, crate::TokenStart>,
state: &mut crate::ParsingState,
options: &ParseOptions,
) -> ParseResult<Vec<StatementOrDeclaration>> {
let mut items = Vec::new();
while let Some(Token(token_type, _)) = reader.peek() {
if let TSXToken::EOS | TSXToken::CloseBrace = token_type {
break;
}
let value = StatementOrDeclaration::from_reader(reader, state, options)?;
if value.requires_semi_colon() {
expect_semi_colon(reader, &state.line_starts, value.get_position().end)?;
}
items.push(value);
}
Ok(items)
}
pub fn statements_and_declarations_to_string<T: source_map::ToString>(
items: &[StatementOrDeclaration],
buf: &mut T,
options: &crate::ToStringOptions,
depth: u8,
) {
for (at_end, item) in items.iter().endiate() {
if !options.pretty {
if let StatementOrDeclaration::Statement(Statement::Expression(
crate::expressions::MultipleExpression::Single(crate::Expression::Null(..)),
)) = item
{
continue;
}
}
options.add_indent(depth, buf);
item.to_string_from_buffer(buf, options, depth);
if (!at_end || options.trailing_semicolon) && item.requires_semi_colon() {
buf.push(';');
}
if !at_end && options.pretty {
buf.push_new_line();
}
}
}