fluidattacks-blends-domain 0.17.1

Blends functional core: pure AST graph to syntax graph (no_std)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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)
}