remove obsolete TODOs (#274)

obfuscatedTypesPackage can't be outright removed, since we still do
require knowledge of what was obfuscated for one reason: types used with
reflection. Since we can only figure that out with go/ast and not just
go/types, we rely on the original compilation to tell us that
information.

IgnoreFuncBodies=true for typechecking the original source code would be
nice, as we would save time, but ultimately it doesn't work. When we
rename top-level declarations such as functions and types, we also need
to amend their references in func bodies. We depend on type information
for that.

Finally, we've been randomizing filenames for a while now. Randomizing
the order of the files doesn't seem to be useful.
pull/277/head
Daniel Martí 4 years ago committed by GitHub
parent 748c6a0538
commit 9312938650
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -115,10 +115,6 @@ var (
envGoPrivate = os.Getenv("GOPRIVATE") // complemented by 'go env' later
)
// TODO(mvdan): now that we also obfuscate assembly funcs, we could likely get
// rid of obfuscatedTypesPackage and have a function that tells us if a
// *types.Func (from the original types.Package) should be obfuscated.
func obfuscatedTypesPackage(path string) *types.Package {
entry, ok := importCfgEntries[path]
if !ok {
@ -578,7 +574,6 @@ func transformCompile(args []string) ([]string, error) {
origImporter = importer.Default()
}
// TODO(mvdan): can we use IgnoreFuncBodies=true?
origTypesConfig := types.Config{Importer: origImporter}
tf.pkg, err = origTypesConfig.Check(curPkg.ImportPath, fset, files, tf.info)
if err != nil {
@ -617,7 +612,6 @@ func transformCompile(args []string) ([]string, error) {
flags = flagSetValue(flags, "-p", newPkgPath)
}
// TODO: randomize the order and names of the files
newPaths := make([]string, 0, len(files))
for i, file := range files {
origName := filepath.Base(filepath.Clean(paths[i]))

Loading…
Cancel
Save