MCPcopy Create free account
hub / github.com/NativeScript/SimDeck / batch_lines_to_json_steps

Function batch_lines_to_json_steps

packages/server/src/main/batch.rs:70–75  ·  view source on GitHub ↗
(step_lines: &[String])

Source from the content-addressed store, hash-verified

68}
69
70fn batch_lines_to_json_steps(step_lines: &[String]) -> anyhow::Result<Vec<Value>> {
71 step_lines
72 .iter()
73 .map(|line| batch_line_to_json_step(line))
74 .collect()
75}
76
77fn batch_line_to_json_step(line: &str) -> anyhow::Result<Value> {
78 let tokens = tokenize_step(line)?;

Callers 1

mainFunction · 0.85

Calls 1

batch_line_to_json_stepFunction · 0.85

Tested by

no test coverage detected