use crate::{
query::adj_ast,
syntax::{builders::throw::build_throw_node, SyntaxGraphArgs, SyntaxGraphError},
NodeId,
};
pub fn reader(
args: &mut SyntaxGraphArgs<'_>,
n_id: NodeId,
) -> Result<Option<NodeId>, SyntaxGraphError> {
let graph = args.ast_graph;
let c_ids = adj_ast(graph, n_id, Some(1), &[]);
let expr_id = c_ids.get(1).copied();
build_throw_node(args, n_id, expr_id).map(Some)
}