sO leftArrowVerbose(GazelleV_LeftArrowScriptParser parser default new, S script) { 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; }