diff options
author | def <dennis@felsin9.de> | 2016-02-27 23:58:14 +0100 |
---|---|---|
committer | def <dennis@felsin9.de> | 2016-02-27 23:58:14 +0100 |
commit | ef1d771cf2bb5f9db81ef771243d8ab5b12a6b78 (patch) | |
tree | 0a5470d04e4caf008661bcbbc14a41ae0cac10f9 /lib | |
parent | 3390da6746364461b5ddb89d020f8cd482a9fd4b (diff) | |
download | Nim-ef1d771cf2bb5f9db81ef771243d8ab5b12a6b78.tar.gz |
Export tables.`$` in json module
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pure/json.nim | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/pure/json.nim b/lib/pure/json.nim index 3565e2feb..2da14c363 100644 --- a/lib/pure/json.nim +++ b/lib/pure/json.nim @@ -53,6 +53,9 @@ import hashes, tables, strutils, lexbase, streams, unicode, macros +export + tables.`$` + type JsonEventKind* = enum ## enumeration of all events that may occur when parsing jsonError, ## an error occurred during parsing |