aboutsummaryrefslogtreecommitdiff
path: root/server/_build/default/lib/jsx/src/jsx_config.hrl
blob: c89963c5023a4c991cd03940cbbc283ca9b96ce9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-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(),
    strict_control_codes = 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()
}).