nixfmt_rs 0.4.1

Rust implementation of nixfmt with exact Haskell compatibility
Documentation
---
source: src/ast_format_tests.rs
description: 1 + 2
---
Operation
    ( Term
        ( Token
            ( Ann
                { preTrivia = fromList []
                , sourceLine = Pos 1
                , value = Integer "1"
                , trailComment = Nothing
                }
            )
        )
    )
    ( Ann
        { preTrivia = fromList []
        , sourceLine = Pos 1
        , value = TPlus
        , trailComment = Nothing
        }
    )
    ( Term
        ( Token
            ( Ann
                { preTrivia = fromList []
                , sourceLine = Pos 1
                , value = Integer "2"
                , trailComment = Nothing
                }
            )
        )
    )