summaryrefslogtreecommitdiff
path: root/deps/jsx/src/jsx_config.hrl
diff options
context:
space:
mode:
Diffstat (limited to 'deps/jsx/src/jsx_config.hrl')
-rw-r--r--deps/jsx/src/jsx_config.hrl17
1 files changed, 17 insertions, 0 deletions
diff --git a/deps/jsx/src/jsx_config.hrl b/deps/jsx/src/jsx_config.hrl
new file mode 100644
index 0000000..be619c0
--- /dev/null
+++ b/deps/jsx/src/jsx_config.hrl
@@ -0,0 +1,17 @@
+-record(config, {
+ dirty_strings = false :: boolean(),
+ escaped_forward_slashes = false :: boolean(),
+ escaped_strings = false :: boolean(),
+ multi_term = false :: boolean(),
+ strict_comments = false :: boolean(),
+ strict_commas = false :: boolean(),
+ strict_utf8 = false :: boolean(),
+ strict_single_quotes = false :: boolean(),
+ strict_escapes = false :: boolean(),
+ stream = false :: boolean(),
+ return_tail = false :: boolean(),
+ uescape = false :: boolean(),
+ unescaped_jsonp = false :: boolean(),
+ error_handler = false :: false | jsx_config:handler(),
+ incomplete_handler = false :: false | jsx_config:handler()
+}).