fluidattacks-blends-domain 0.6.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::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 expression_id = match_ast(args.ast_graph, n_id, &["throw", ";"], None)
        .get("__0__")
        .copied()
        .flatten()
        .ok_or(SyntaxGraphError::UnexpectedAstShape)?;
    build_throw_node(args, n_id, Some(expression_id)).map(Some)
}