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
use crate::query::match_ast_group_d;
use crate::syntax::builders::switch_body::build_switch_body_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 case_ids = match_ast_group_d(graph, n_id, "switch_section", Some(1));
    build_switch_body_node(args, n_id, &case_ids, None).map(Some)
}