diff options
author | Eduardo Julian | 2021-01-11 02:05:30 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-01-11 02:05:30 -0400 |
commit | 8aac0c573c29d2829242d66539a9e027d03ff8ec (patch) | |
tree | 5b4b37d33b90ff24b3d9d019e31770d6d0b8dc9d /stdlib/source/lux/data/format/json.lux | |
parent | 706ce9e4916b65c4df5101bd3cc1b4da3b2057af (diff) |
Encapsulate JS definitions produced by the JS compiler in a local scope to avoid interacting with the global scope.
Diffstat (limited to '')
-rw-r--r-- | stdlib/source/lux/data/format/json.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdlib/source/lux/data/format/json.lux b/stdlib/source/lux/data/format/json.lux index 22d587352..b1bd3d95e 100644 --- a/stdlib/source/lux/data/format/json.lux +++ b/stdlib/source/lux/data/format/json.lux @@ -1,7 +1,7 @@ (.module: {#.doc (.doc "Functionality for reading and writing values in the JSON format." "For more information, please see: http://www.json.org/")} [lux #* - ["." meta (#+ monad with_gensyms)] + ["." meta (#+ monad)] [abstract [equivalence (#+ Equivalence)] [codec (#+ Codec)] @@ -21,7 +21,7 @@ ["." list ("#\." fold functor)] ["." row (#+ Row row) ("#\." monad)] ["." dictionary (#+ Dictionary)]]] - [macro + [macro (#+ with_gensyms) [syntax (#+ syntax:)] ["." code]] [math |