17 lines
520 B
C
17 lines
520 B
C
|
|
#include <bshell/ast.h>
|
||
|
|
#include <bshell/parse/token.h>
|
||
|
|
|
||
|
|
static void to_string(const struct bshell_ast_node *node, fx_bstr *out)
|
||
|
|
{
|
||
|
|
const struct bshell_string_ast_node *string = (const struct
|
||
|
|
bshell_string_ast_node *)
|
||
|
|
node;
|
||
|
|
fx_bstr_write_fmt(out, NULL, "%s", string->n_value->tok_str);
|
||
|
|
}
|
||
|
|
|
||
|
|
struct bshell_ast_node_definition string_bshell_ast_node = {
|
||
|
|
.def_id = BSHELL_AST_STRING,
|
||
|
|
.def_node_size = sizeof(struct bshell_string_ast_node),
|
||
|
|
.def_to_string = to_string,
|
||
|
|
};
|