fluidattacks-blends-domain 0.3.0

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
use crate::query::match_ast;
use crate::syntax::builders::finally_clause::build_finally_clause_node;
use crate::syntax::{SyntaxGraphArgs, SyntaxGraphError};
use crate::NodeId;

pub fn reader(
    args: &mut SyntaxGraphArgs<'_>,
    n_id: NodeId,
) -> Result<Option<NodeId>, SyntaxGraphError> {
    let graph = args.ast_graph;
    let finally_block = match_ast(graph, n_id, &["block"], None)
        .get("block")
        .copied()
        .flatten();
    build_finally_clause_node(args, n_id, finally_block).map(Some)
}