typstyle-core 0.14.4

A pretty printer for typst.
Documentation
use typst_syntax::{SyntaxKind, SyntaxNode, ast::*};

pub fn is_only_one_and<T>(
    mut iterator: impl Iterator<Item = T>,
    f: impl FnOnce(&T) -> bool,
) -> bool {
    iterator
        .next()
        .is_some_and(|first| iterator.next().is_none() && f(&first))
}

pub fn is_empty_or_one_if<T>(
    mut iterator: impl Iterator<Item = T>,
    f: impl FnOnce(&T) -> bool,
) -> bool {
    iterator
        .next()
        .is_none_or(|it| iterator.next().is_none() && f(&it))
}

pub fn is_comment_node(node: &SyntaxNode) -> bool {
    matches!(
        node.kind(),
        SyntaxKind::LineComment | SyntaxKind::BlockComment
    )
}

pub fn has_comment_children(node: &SyntaxNode) -> bool {
    node.children().any(is_comment_node)
}

pub(super) fn func_name(node: FuncCall<'_>) -> Option<&str> {
    match node.callee() {
        Expr::Ident(ident) => Some(ident.as_str()),
        Expr::FieldAccess(field_access) => Some(field_access.field().as_str()),
        _ => None,
    }
}