func prettyPrint()

in Sources/sh-parser/main.swift [65:77]


    func prettyPrint() {
        switch self {
        case .dictionary(let dict):
            print("- dictionary (\(dict.count) entries):")
            dict.prettyPrint(depth: 1)
        case .list(let list):
            print("- list (\(list.count) entries):")
            list.prettyPrint(depth: 1)
        case .item(let item):
            print("- item:")
            item.prettyPrint(depth: 1)
        }
    }