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
use crate::syntax::builders::else_clause::build_else_clause_node;
use crate::syntax::fields::python::else_clause;
use crate::syntax::{SyntaxGraphArgs, SyntaxGraphError};
use crate::NodeId;

pub fn reader(
    args: &mut SyntaxGraphArgs<'_>,
    n_id: NodeId,
) -> Result<Option<NodeId>, SyntaxGraphError> {
    let body_id = args.required_field_alt(n_id, else_clause::BODY)?;
    build_else_clause_node(args, n_id, body_id).map(Some)
}