This commit is contained in:
Araq
2019-04-23 14:43:42 +02:00
parent 809a4a77a5
commit 437f464810

View File

@@ -419,6 +419,9 @@ proc formatValue*(result: var string; value: SomeInteger; specifier: string) =
## Standard format implementation for ``SomeInteger``. It makes little
## sense to call this directly, but it is required to exist
## by the ``&`` macro.
if specifier.len == 0:
result.add $value
return
let spec = parseStandardFormatSpecifier(specifier)
var radix = 10
case spec.typ
@@ -719,6 +722,10 @@ when isMainModule:
let flfoo: float = 1.0
check &"{flfoo}", "1.0"
# bug #11092
check &"{high(int64)}", "9223372036854775807"
check &"{low(int64)}", "-9223372036854775808"
import json
doAssert fmt"{'a'} {'b'}" == "a b"