sO leftArrowVerbose(S script) { new GazelleV_LeftArrowScriptParser parser; enableScaffolding(parser); parser.allowTheWorld(); var parsedScript = parser.parse(script); parser.printFunctionDefs(parsedScript); print(parsedScript); printIndentedStruct(parsedScript); new VarContext ctx; var result = parsedScript.get(ctx); ctx.printMe(); ret result; }