pub fn repl_global_bindings(
input: &str,
program_args: &[String],
) -> Option<Vec<(String, String, String)>>Expand description
Run a program on the synchronous tree-walker and return its global
bindings as sorted (name, type, value) rows — the REPL’s :vars
inspection. Returns None for programs the sync walker can’t host
(async/concurrent) or that fail to parse or run.