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
14
15
16
use alloc::borrow::ToOwned;

use crate::query::label_text;
use crate::syntax::builders::string_literal::build_string_literal_node;
use crate::syntax::{SyntaxGraphArgs, SyntaxGraphError};
use crate::NodeId;

pub fn reader(
    args: &mut SyntaxGraphArgs<'_>,
    n_id: NodeId,
) -> Result<Option<NodeId>, SyntaxGraphError> {
    let value = label_text(args.ast_graph, n_id)
        .ok_or(SyntaxGraphError::UnexpectedAstShape)?
        .to_owned();
    build_string_literal_node(args, n_id, value, &[]).map(Some)
}