Dave Polansky

Results 2 issues of Dave Polansky

Consider the following code: ```go typeRef := TypeReferenceFromInstance(bytes.Buffer{}) actual := typeRef.GetName() ``` `actual` will be assigned `bytes.Buffer` as the name, which contains the package qualifier as expected. However, the TypeReference...

enhancement

In the following example, a file is generated inside of package `main` while referencing a function, `foo`, which is also in package `main`. ``` go package main import ( "fmt"...

bug