viewof file_node_yaml = code(`
$type: nn_file
title: declarative_to_js_bootstrap_tests.yaml
created_by: Leonard Pauli, 7 jan 2020
command: {$: start}
# include: "./bootstrapped_nodes.yaml"
nodes:
- $id: start
$type: integer_add
input:
- $id: user_input
$type: dynamic
input_type: {$: integer}
- 2
- $id: second_output
$type: output
input: {$: some_intermediate}
output_type: {$: integer}
# - {$: start}
- {$: third_output}
- $id: some_intermediate
$type: integer_add
input:
- 3
- 4
- {$: user_input}
- {$: third_output}
- $id: third_output
$type: output
input: {$: third}
output_type: {$: integer}
- $id: third
$type: integer_add
input:
- {$: user_input}
- 9
`, 'yaml', true)