removes all traces of unquoted key and comment support

This commit is contained in:
alisdair sullivan 2011-07-03 17:42:44 -07:00
parent e4cbe15fa7
commit e20e6746a2
19 changed files with 13 additions and 225 deletions

View file

@ -32,9 +32,7 @@
-type jsx_opts() :: [jsx_opt()].
-type jsx_opt() :: {comments, true | false}
| {escaped_unicode, ascii | codepoint | none}
| {unquoted_keys, true | false}
-type jsx_opt() :: {escaped_unicode, ascii | codepoint | none}
| {multi_term, true | false}
| {encoding, auto
| utf8
@ -109,8 +107,6 @@
-type decoder_opts() :: [decoder_opt()].
-type decoder_opt() :: {strict, true | false}
| {comments, true | false}
| {unquoted_keys, true | false}
| {encoding, supported_utf()}
| {label, atom | binary | existing_atom}
| {float, true | false}.
@ -118,16 +114,12 @@
-type verify_opts() :: [verify_opt()].
-type verify_opt() :: {strict, true | false}
| {encoding, auto | supported_utf()}
| {unquoted_keys, true | false}
| {comments, true | false}.
| {encoding, auto | supported_utf()}.
-type format_opts() :: [format_opt()].
-type format_opt() :: {strict, true | false}
| {encoding, auto | supported_utf()}
| {unquoted_keys, true | false}
| {comments, true | false}
| {space, integer()}
| space
| {indent, integer()}