Fix token.Float integer literals

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

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

Loading…
Cancel
Save