ktateish / gottani

A tool for combining Go source code into a single .go file
BSD 2-Clause "Simplified" License
9 stars 1 forks source link

Renaming is not done when the same library is imported multiple times #3

Closed ktateish closed 4 years ago

ktateish commented 4 years ago

When the libx is like:

import (
    "math"
)

and liby is like:

import (
    ymath "math"
)

the identity ymath is not renamed properly.