fluidattacks-blends-domain 0.6.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
use crate::query::adj_ast;
use crate::syntax::builders::if_statement::build_if_node;
use crate::syntax::{SyntaxGraphArgs, SyntaxGraphError};
use crate::NodeId;

pub fn reader(
    args: &mut SyntaxGraphArgs<'_>,
    n_id: NodeId,
) -> Result<Option<NodeId>, SyntaxGraphError> {
    let condition_id = adj_ast(args.ast_graph, n_id, None, &[])
        .last()
        .copied()
        .ok_or(SyntaxGraphError::UnexpectedAstShape)?;
    build_if_node(args, n_id, condition_id, None, None, None).map(Some)
}