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
17
use crate::syntax::fields::ruby::r#while;
use crate::{
    syntax::{
        builders::while_statement::build_while_statement_node, SyntaxGraphArgs, SyntaxGraphError,
    },
    NodeId,
};

pub fn reader(
    args: &mut SyntaxGraphArgs<'_>,
    n_id: NodeId,
) -> Result<Option<NodeId>, SyntaxGraphError> {
    let condition_id = args.required_field_alt(n_id, r#while::CONDITION)?;
    let block = args.required_field_alt(n_id, r#while::BODY)?;

    build_while_statement_node(args, n_id, block, Some(condition_id)).map(Some)
}