fluidattacks-blends-domain 0.2.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
17
//! Counterpart of `blends/syntax/readers/common/missing_node.py`.

use alloc::string::String;

use crate::query;
use crate::syntax::builders::missing_node::build_missing_node;
use crate::syntax::{SyntaxGraphArgs, SyntaxGraphError};
use crate::NodeId;

pub fn reader(
    args: &mut SyntaxGraphArgs<'_>,
    n_id: NodeId,
    n_type: String,
) -> Result<NodeId, SyntaxGraphError> {
    let c_ids = query::adj_ast(args.ast_graph, n_id, None, &[]);
    build_missing_node(args, n_id, n_type, &c_ids)
}