mirror of
https://github.com/nushell/nushell.git
synced 2025-06-03 16:45:41 +02:00
Closes #15373 # Description Now `ast -f "{||}"` will return ``` ╭─content─┬─────shape─────┬─────span──────╮ │ {||} │ shape_closure │ ╭───────┬───╮ │ │ │ │ │ start │ 0 │ │ │ │ │ │ end │ 4 │ │ │ │ │ ╰───────┴───╯ │ ╰─────────┴───────────────┴───────────────╯ ``` Similar to those of `ast -f "[]"`/`ast -f "{}"` # User-Facing Changes # Tests + Formatting I didn't find the right place to do the test, except for the examples of `ast` command. # After Submitting