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

wordify breaks calls to APIs made while generating #49

Closed
nolag opened this issue Mar 9, 2018 · 0 comments
Closed

wordify breaks calls to APIs made while generating #49

nolag opened this issue Mar 9, 2018 · 0 comments
Milestone

Comments

@nolag
Copy link

nolag commented Mar 9, 2018

Eg

type GenericType generic.Type

type NameGenericType Interface {
    DoSomthingGenericType()
}

func Stuff(ngt NameGenericType) {
   ngt.DoSomthingGenericType()
}

When generating with uint8 produces

type uint8 interface {
	DoSomthingUint8()
}

func Stuff(ngt uint8) {
	ngt.DoSomthinguint8()
}
@pdrum pdrum added this to the Next release milestone Aug 21, 2018
pdrum added a commit that referenced this issue Aug 30, 2018
Fix #49 and #36 - use go scanner for parsing lines and identifiers
@pdrum pdrum closed this as completed in 5ae698b Aug 30, 2018
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants