Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update printing style #24

Merged
merged 3 commits into from
Dec 10, 2020
Merged

Conversation

jvliwanag
Copy link
Member

I wanted to take care of #22 and ended up changing a number of things. This is my first usage of a pretty printer lib, so not entirely sure if I'm doing these right. The changes include the ff:

  • Change printers to add newline prior to symbols. Favor indent over alignCurrentColumn.
-- old
newtype Foo = Foo
              ( rowField :: Number
              , rowField2 :: Number
              | MyExtension + MyOtherExtension {someField :: Number}
              )

-- new
newtype Foo
  = Foo
    ( rowField :: Number
    , rowField2 :: Number
    | MyExtension + MyOtherExtension {someField :: Number}
    )
  • Remove unneeded parenthesis on type declaration
-- old
type Foo = (Foo A <+> Foo B)

-- new
type Foo = Foo A <+> Foo B
  • Remove space after record/row parenthesis if within a line.
-- old
newtype Foo = Foo (Array { foo :: Number })

-- new
newtype Foo = Foo (Array {foo :: Number})
  • Remove space prior dot on forall
-- old
newtype Foo = Foo (forall f . Functor f => f ~> Maybe)

-- new
newtype Foo = Foo (forall f. Functor f => f ~> Maybe)
  • Fix breaking on TypeApp
-- old
type Foo = (FooBarBaz
            QuxQuuxQuz -> FooBarBaz
                          QuxQuuxQuz -> FooBarBaz
                                        QuxQuuxQuz -> FooBarBaz
                                                      QuxQuuxQuz)

-- new
type Foo
  = FooBarBaz QuxQuuxQuz
  -> FooBarBaz QuxQuuxQuz
  -> FooBarBaz QuxQuuxQuz
  -> FooBarBaz QuxQuuxQuz
  • Generalize printing of type, newtype and data declarations. Reuse TypeApp printing

--

I realize I may have take too much of a liberty changing up the printers a bit too much. If it is preferred that I take a step by step approach and a bit more bite sized series of pull requests, please let me know.

There are a number of missing parts I've left unsolved for now, since this one has already grown too big. But can help out on future pull requests including:

  • ado, do statements
  • constraint list in instance head

I'm also open to changing the printing styles of course.

* Generalize printing of type, newtype and data declarations.
  Reuse TypeApp printing

* Change printers to add newline prior to symbols. Favor indent over
  alignCurrentColumn.

* Remove unneeded parenthesis on type declaration

* Remove space after record/row parenthesis if within a line.

* Remove space prior dot on forall
@srghma
Copy link
Collaborator

srghma commented Dec 9, 2020

re

Remove space after record/row parenthesis if within a line.
-- old
newtype Foo = Foo (Array { foo :: Number })

-- new
newtype Foo = Foo (Array {foo :: Number})

purty always adds spaces

f :: Array { x :: Int, y :: Boolean }
f =
  [ { x: 1
    , y:
      true
    }
  , { x: 10, y: false }
  , { x: 0
    , y: true
    }
  ]

@srghma
Copy link
Collaborator

srghma commented Dec 9, 2020

I too prefer

{ foo :: Number }

to

{foo :: Number}

because it's easier to go from { foo :: Number }

to

{ foo :: Number
, bar :: ASDF
}

@srghma
Copy link
Collaborator

srghma commented Dec 9, 2020

@jvliwanag
Copy link
Member Author

In line with that, would we prefer purty style of putting the operators at the end?

foo ::
  forall a.
  Foo a =>
  a ->
  Int

It will make things much simpler. But not sure if that's the preferred style. Can of course be a sep pull request.

In the meantime, I'll change the space for records / rows.

@srghma
Copy link
Collaborator

srghma commented Dec 9, 2020

In line with that, would we prefer purty style of putting the operators at the end?

foo ::
  forall a.
  Foo a =>
  a ->
  Int

It will make things much simpler. But not sure if that's the preferred style. Can of course be a sep pull request.

In the meantime, I'll change the space for records / rows.

I have no preference

purty author is using the right styling (you provided) in haskell, I use the left styling

added https://gitlab.com/joneshf/purty/-/issues/222

@jvliwanag
Copy link
Member Author

I’ve reverted the spacing on rows on the last commit

@srghma srghma merged commit cb36ad9 into purescript-codegen:master Dec 10, 2020
@jvliwanag jvliwanag deleted the printer-updates branch December 10, 2020 13:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants