use crate::query::{adj_ast, match_ast};
use crate::syntax::builders::rest_pattern::build_rest_pattern_node;
use crate::syntax::{SyntaxGraphArgs, SyntaxGraphError};
use crate::NodeId;
pub fn reader(
args: &mut SyntaxGraphArgs<'_>,
n_id: NodeId,
) -> Result<Option<NodeId>, SyntaxGraphError> {
let identifier_id = match_ast(args.ast_graph, n_id, &["*", "**"], None)
.get("__0__")
.copied()
.flatten()
.or_else(|| adj_ast(args.ast_graph, n_id, None, &[]).first().copied())
.ok_or(SyntaxGraphError::UnexpectedAstShape)?;
build_rest_pattern_node(args, n_id, identifier_id).map(Some)
}