use crate::query::match_ast;
use crate::syntax::builders::throw::build_throw_node;
use crate::syntax::{SyntaxGraphArgs, SyntaxGraphError};
use crate::NodeId;
pub fn reader(
args: &mut SyntaxGraphArgs<'_>,
n_id: NodeId,
) -> Result<Option<NodeId>, SyntaxGraphError> {
let matched = match_ast(args.ast_graph, n_id, &["raise"], None);
let expr_id = matched.get("__0__").copied().flatten();
build_throw_node(args, n_id, expr_id).map(Some)
}