enameg

package module
v0.0.0-...-7b49aba Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 30, 2019 License: MIT Imports: 9 Imported by: 0

README

enameg

enameg is a enum names generator.

Install

$ go get github.com/knightso/enameg/cmd/enameg

How to use

Usage

$ ename [-flag] [directory]
$ ename [-flag] files... # Must be a single package

-flag:
  -output="":
    file name; default srcdir/<filename>_ename.go

  -nofmt:
    no apply gofmt and goimports when true

  -default-empty
        default case to empty when true

Annotation

Thie generator generates Name method for the type which have an annotation comment // +enameg.

from:

// +enameg
type HogeType int

const (
	HogeTypeA HogeType = 0 // A
	HogeTypeB HogeType = 1 // B
	HogeTypeC HogeType = 2 // C
)

to:

// Name returns the HogeType Name.
func (src HogeType) Name() string {
	switch src {
	case HogeTypeA:
		return "A"
	case HogeTypeB:
		return "B"
	case HogeTypeC:
		return "C"
	default:
		return fmt.Sprintf("%v", src)
	}
}

Options

default-empty

default case returns "".

to:

// Name returns the HogeType Name.
func (src HogeType) Name() string {
	switch src {
	.
	.
	default:
		return ""
	}
}

With go generate

//go:generate enameg $GOFILE

// +enameg
type HogeType int

const (
	HogeTypeA HogeType = 0 // A
	HogeTypeB HogeType = 1 // B
	HogeTypeC HogeType = 2 // C
)

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func Generate

func Generate(paths []string, useFormatter, isDefaultEmpty bool) (string, string)

Generate returns packageName and generated functions by paths.

Types

This section is empty.

Directories

Path Synopsis
cmd

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL