Giter Club home page Giter Club logo

Comments (8)

dave avatar dave commented on May 26, 2024 1

I'll have a think... but trying to support everyone's version of exactly how they want the output to be formatted will open a rather large can of worms, so I wouldn't hold your breath!

from jennifer.

dave avatar dave commented on May 26, 2024

Hmm I'm not sure I want to complicate the API with control over the formatting of the output...

from jennifer.

mickeyreiss avatar mickeyreiss commented on May 26, 2024

Agreed. I like the directness of the API as it is today.

What if the formatting were based on a simple heuristic? For example, use multi-line formatting if the parameter count is greater than 3.

from jennifer.

dave avatar dave commented on May 26, 2024

How about:

package main

import (
	"os"

	"github.com/dave/jennifer/jen"
)

func main() {
	f := jen.NewFile("test")

	f.Func().Id("PrintNumbers").Call().Block(
		jen.Qual("fmt", "Println").ParamsFunc(func(g *jen.Group) {
			for idx := 0; idx < 10; idx += 1 {
				g.Line().Lit(idx)
			}
		}),
	)

	if err := f.Render(os.Stdout); err != nil {
		panic(err)
	}
}

Output:

package test

import fmt "fmt"

func PrintNumbers() {
	fmt.Println(
		0,
		1,
		2,
		3,
		4,
		5,
		6,
		7,
		8,
		9)
}

from jennifer.

dave avatar dave commented on May 26, 2024

That's a bit of a kludge 😉

from jennifer.

mickeyreiss avatar mickeyreiss commented on May 26, 2024

Not perfect (final parameter on same line as )), but it'll work for me for now! Thanks for the quick support, @dave! :octocat: 🎉

from jennifer.

mickeyreiss avatar mickeyreiss commented on May 26, 2024

Also, if you change your mind about it, I'd be happy to take a try at contributing the change.

from jennifer.

dave avatar dave commented on May 26, 2024

But thanks for the input - it's really useful to see how people are using it!

from jennifer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.