@ -1066,10 +1066,8 @@ func (tf *transformer) transformCompile(args []string) ([]string, error) {
// We don't if it's the main package, as that just uses "-p main".
// We don't if it's the main package, as that just uses "-p main".
// We only set newPkgPath if we're obfuscating the import path,
// We only set newPkgPath if we're obfuscating the import path,
// to replace the original package name in the package clause below.
// to replace the original package name in the package clause below.
newPkgPath := ""
if tf . curPkg . Name != "main" && tf . curPkg . ToObfuscate {
if tf . curPkg . Name != "main" && tf . curPkg . ToObfuscate {
newPkgPath = tf . curPkg . obfuscatedImportPath ( )
flags = flagSetValue ( flags , "-p" , tf . curPkg . obfuscatedImportPath ( ) )
flags = flagSetValue ( flags , "-p" , newPkgPath )
}
}
newPaths := make ( [ ] string , 0 , len ( files ) )
newPaths := make ( [ ] string , 0 , len ( files ) )
@ -1090,13 +1088,7 @@ func (tf *transformer) transformCompile(args []string) ([]string, error) {
}
}
tf . transformDirectives ( file . Comments )
tf . transformDirectives ( file . Comments )
file = tf . transformGoFile ( file )
file = tf . transformGoFile ( file )
// newPkgPath might be the original ImportPath in some edge cases like
file . Name . Name = tf . curPkg . obfuscatedPackageName ( )
// compilerIntrinsics; we don't want to use slashes in package names.
// TODO: when we do away with those edge cases, only check the string is
// non-empty.
if newPkgPath != "" && newPkgPath != tf . curPkg . ImportPath {
file . Name . Name = newPkgPath
}
src , err := printFile ( tf . curPkg , file )
src , err := printFile ( tf . curPkg , file )
if err != nil {
if err != nil {
@ -2105,9 +2097,6 @@ func (tf *transformer) transformGoFile(file *ast.File) *ast.File {
if err != nil {
if err != nil {
panic ( err ) // should never happen
panic ( err ) // should never happen
}
}
if ! lpkg . ToObfuscate {
return true
}
if lpkg . Name != "main" {
if lpkg . Name != "main" {
newPath := lpkg . obfuscatedImportPath ( )
newPath := lpkg . obfuscatedImportPath ( )
imp . Path . Value = strconv . Quote ( newPath )
imp . Path . Value = strconv . Quote ( newPath )