Fix token.Float integer literals

pull/102/head
lu4p 5 years ago
parent 13e273c9b3
commit d00226540c

@ -9,6 +9,7 @@ import (
"math"
"reflect"
"strconv"
"strings"
"golang.org/x/tools/go/ast/astutil"
ah "mvdan.cc/garble/internal/asthelper"
@ -109,14 +110,14 @@ func obfuscateNumberLiteral(cursor *astutil.Cursor, info *types.Info, obfLits ob
return false, nil
}
intValue, err := strconv.ParseInt(strValue, 0, 64)
intValue, err := strconv.ParseInt(strings.Split(strValue, ".")[0], 0, 64)
if err != nil {
return false, err
}
intType, ok := intTypes[typeInfo]
if !ok {
return false, errors.New("wrong type")
return false, nil
}
call = genObfuscateInt(uint64(intValue), intType)

Loading…
Cancel
Save