diff options
Diffstat (limited to 'libgo/go/strconv/internal_test.go')
-rw-r--r-- | libgo/go/strconv/internal_test.go | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libgo/go/strconv/internal_test.go b/libgo/go/strconv/internal_test.go new file mode 100644 index 00000000000..9a7f4f0867c --- /dev/null +++ b/libgo/go/strconv/internal_test.go @@ -0,0 +1,15 @@ +// Copyright 2009 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// export access to strconv internals for tests + +package strconv + +func NewDecimal(i uint64) *decimal { return newDecimal(i) } + +func SetOptimize(b bool) bool { + old := optimize + optimize = b + return old +} |