Capitalised enum value names in JSON module.

This commit is contained in:
Dominik Picheta
2014-06-05 23:12:22 +01:00
parent 2dba171acc
commit 69a5954807

View File

@@ -642,19 +642,19 @@ proc `==`* (a,b: PJsonNode): bool =
proc hash* (n:PJsonNode): THash =
## Compute the hash for a JSON node
case n.kind
of jArray:
of JArray:
result = hash(n.elems)
of jObject:
of JObject:
result = hash(n.fields)
of jInt:
of JInt:
result = hash(n.num)
of jFloat:
of JFloat:
result = hash(n.fnum)
of jBool:
of JBool:
result = hash(n.bval.int)
of jString:
of JString:
result = hash(n.str)
of jNull:
of JNull:
result = hash(0)
proc len*(n: PJsonNode): int =