2013-02-12 11:54:42 -08:00
|
|
|
-record(config, {
|
2015-01-25 21:44:15 -08:00
|
|
|
dirty_strings = false :: boolean(),
|
2013-12-17 02:03:21 +00:00
|
|
|
escaped_forward_slashes = false :: boolean(),
|
|
|
|
escaped_strings = false :: boolean(),
|
2015-01-25 21:44:15 -08:00
|
|
|
multi_term = false :: boolean(),
|
2013-12-17 02:03:21 +00:00
|
|
|
strict_comments = false :: boolean(),
|
2014-08-19 17:47:44 -07:00
|
|
|
strict_commas = false :: boolean(),
|
2013-12-17 02:03:21 +00:00
|
|
|
strict_utf8 = false :: boolean(),
|
|
|
|
strict_single_quotes = false :: boolean(),
|
|
|
|
strict_escapes = false :: boolean(),
|
|
|
|
stream = false :: boolean(),
|
2015-08-04 15:33:21 +02:00
|
|
|
return_tail = false :: boolean(),
|
2014-11-24 17:59:41 -08:00
|
|
|
uescape = false :: boolean(),
|
2015-01-25 21:44:15 -08:00
|
|
|
unescaped_jsonp = false :: boolean(),
|
2013-12-17 02:03:21 +00:00
|
|
|
error_handler = false :: false | jsx_config:handler(),
|
|
|
|
incomplete_handler = false :: false | jsx_config:handler()
|
2013-09-19 17:04:38 +02:00
|
|
|
}).
|