diff options
author | Yuriy Glukhov <yglukhov@users.noreply.github.com> | 2017-09-11 18:29:59 +0300 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2017-09-11 17:29:59 +0200 |
commit | c35cc97b1e9019956e43d8e17b674f5a98305ced (patch) | |
tree | 85ae458262a5d51a175d3394207b3175c9e78a7c /lib/pure | |
parent | 3c870d3bb9791850bb76c5db339ac989f9f83bcf (diff) | |
download | Nim-c35cc97b1e9019956e43d8e17b674f5a98305ced.tar.gz |
Fixed closure compiler incompatibility (#6365)
Diffstat (limited to 'lib/pure')
-rw-r--r-- | lib/pure/json.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pure/json.nim b/lib/pure/json.nim index 03140e95d..9dc9b51f3 100644 --- a/lib/pure/json.nim +++ b/lib/pure/json.nim @@ -1284,7 +1284,7 @@ else: result.add(x[i].convertObject()) of JObject: result = newJObject() - asm """for (property in `x`) { + asm """for (var property in `x`) { if (`x`.hasOwnProperty(property)) { """ var nimProperty: cstring |