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

pub fn reader(
    args: &mut SyntaxGraphArgs<'_>,
    n_id: NodeId,
) -> Result<Option<NodeId>, SyntaxGraphError> {
    let block_id = args.required_field_alt(n_id, finally_clause::BODY)?;

    build_finally_clause_node(args, n_id, Some(block_id)).map(Some)
}