9a2dfb ghc-aeson-1.2.3.0 base

Merged and Committed by Packit 3 years ago
423 files changed. 22106 lines added. 0 lines removed.
Data/Aeson.hs
file added
+471
Data/Aeson/Compat.hs
file added
+16
Data/Aeson/Encode.hs
file added
+30
Data/Aeson/Encoding.hs
file added
+54
Data/Aeson/Encoding/Builder.hs
file added
+329
Data/Aeson/Encoding/Internal.hs
file added
+370
Data/Aeson/Internal.hs
file added
+28
Data/Aeson/Internal/Functions.hs
file added
+39
Data/Aeson/Internal/Time.hs
file added
+20
Data/Aeson/Parser.hs
file added
+69
Data/Aeson/Parser/Internal.hs
file added
+369
Data/Aeson/Parser/Time.hs
file added
+72
Data/Aeson/Parser/Unescape.hs
file added
+11
Data/Aeson/TH.hs
file added
+2040
Data/Aeson/Text.hs
file added
+101
Data/Aeson/Types.hs
file added
+142
Data/Aeson/Types/Class.hs
file added
+105
Data/Aeson/Types/FromJSON.hs
file added
+2266
Data/Aeson/Types/Generic.hs
file added
+114
Data/Aeson/Types/Internal.hs
file added
+688
Data/Aeson/Types/ToJSON.hs
file added
+2735
LICENSE
file added
+30
README.markdown
file added
+28
Setup.lhs
file added
+3
aeson.cabal
file added
+255
attoparsec-iso8601/Data/Attoparsec/Time.hs
file added
+149
attoparsec-iso8601/Data/Attoparsec/Time/Internal.hs
file added
+61
benchmarks/AesonCompareAutoInstances.hs
file added
+282
benchmarks/AesonEncode.hs
file added
+43
benchmarks/AesonFoldable.hs
file added
+114
benchmarks/AesonMap.hs
file added
+231
benchmarks/AesonParse.hs
file added
+39
benchmarks/AesonTuples.hs
file added
+46
benchmarks/Compare.hs
file added
+30
benchmarks/Compare/BufferBuilder.hs
file added
+65
benchmarks/Compare/JsonBench.hs
file added
+330
benchmarks/Compare/JsonBuilder.hs
file added
+69
benchmarks/CompareWithJSON.hs
file added
+112
benchmarks/Dates.hs
file added
+44
benchmarks/Escape.hs
file added
+25
benchmarks/JsonParse.hs
file added
+40
benchmarks/Makefile
file added
+15
benchmarks/Micro.hs
file added
+20
benchmarks/Options.hs
file added
+11
benchmarks/ReadFile.hs
file added
+37
benchmarks/Typed.hs
file added
+19
benchmarks/Typed/Common.hs
file added
+31
benchmarks/Typed/Generic.hs
file added
+60
benchmarks/Typed/Manual.hs
file added
+60
benchmarks/Typed/TH.hs
file added
+60
benchmarks/aeson-benchmarks.cabal
file added
+263
benchmarks/bench-parse.py
file added
+56
benchmarks/encode.py
file added
+24
benchmarks/json-data/buffer-builder.json
file added
+4322
benchmarks/json-data/dates-fract.json
file added
+1
benchmarks/json-data/dates.json
file added
+1
benchmarks/json-data/example.json
file added
+88
benchmarks/json-data/geometry.json
file added
+1
benchmarks/json-data/integers.json
file added
+1
benchmarks/json-data/jp10.json
file added
+1
benchmarks/json-data/jp100.json
file added
+1
benchmarks/json-data/jp50.json
file added
+1
benchmarks/json-data/numbers.json
file added
+1
benchmarks/json-data/twitter1.json
file added
+1
benchmarks/json-data/twitter10.json
file added
+1
benchmarks/json-data/twitter100.json
file added
+1
benchmarks/json-data/twitter20.json
file added
+1
benchmarks/json-data/twitter50.json
file added
+1
benchmarks/parse.py
file added
+25
cbits/unescape_string.c
file added
+149
changelog.md
file added
+556
examples/Generic.hs
file added
+37
examples/Simplest.hs
file added
+41
examples/TemplateHaskell.hs
file added
+28
examples/Twitter.hs
file added
+81
examples/Twitter/Generic.hs
file added
+79
examples/Twitter/Manual.hs
file added
+282
examples/Twitter/Options.hs
file added
+33
examples/Twitter/TH.hs
file added
+41
examples/aeson-examples.cabal
file added
+32
ffi/Data/Aeson/Parser/UnescapeFFI.hs
file added
+52
include/incoherent-compat.h
file added
+7
include/overlapping-compat.h
file added
+8
pure/Data/Aeson/Parser/UnescapePure.hs
file added
+272
stack-bench.yaml
file added
+15
stack-ffi-unescape.yaml
file added
+7
stack-lts6.yaml
file added
+24
stack-lts7.yaml
file added
+17
stack-lts8.yaml
file added
+15
stack-lts9.yaml
file added
+12
stack-nightly.yaml
file added
+9
tests/DataFamilies/Encoders.hs
file added
+239
tests/DataFamilies/Instances.hs
file added
+42
tests/DataFamilies/Properties.hs
file added
+140
tests/DataFamilies/Types.hs
file added
+54
tests/Encoders.hs
file added
+416
tests/ErrorMessages.hs
file added
+71
tests/Functions.hs
file added
+17
tests/Instances.hs
file added
+169
tests/JSONTestSuite/test_parsing/i_object_key_lone_2nd_surrogate.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_1st_surrogate_but_2nd_missing.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_1st_valid_surrogate_2nd_invalid.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_UTF-16LE_with_BOM.json
file added
+0
tests/JSONTestSuite/test_parsing/i_string_UTF-8_invalid_sequence.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_incomplete_surrogate_and_escape_valid.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_incomplete_surrogate_pair.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_incomplete_surrogates_escape_valid.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_invalid_lonely_surrogate.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_invalid_surrogate.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_inverted_surrogates_U+1D11E.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_lone_second_surrogate.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_not_in_unicode_range.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_truncated-utf-8.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_unicode_U+10FFFE_nonchar.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_unicode_U+1FFFE_nonchar.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_unicode_U+FDD0_nonchar.json
file added
+1
tests/JSONTestSuite/test_parsing/i_string_unicode_U+FFFE_nonchar.json
file added
+1
tests/JSONTestSuite/test_parsing/i_structure_500_nested_arrays.json
file added
+1
tests/JSONTestSuite/test_parsing/i_structure_UTF-8_BOM_empty_object.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_1_true_without_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_a_invalid_utf8.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_colon_instead_of_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_comma_after_close.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_comma_and_number.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_double_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_double_extra_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_extra_close.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_extra_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_incomplete.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_incomplete_invalid_value.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_inner_array_no_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_invalid_utf8.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_items_separated_by_semicolon.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_just_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_just_minus.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_missing_value.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_newlines_unclosed.json
file added
+3
tests/JSONTestSuite/test_parsing/n_array_number_and_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_number_and_several_commas.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_spaces_vertical_tab_formfeed.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_star_inside.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_unclosed.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_unclosed_trailing_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_array_unclosed_with_new_lines.json
file added
+3
tests/JSONTestSuite/test_parsing/n_array_unclosed_with_object_inside.json
file added
+1
tests/JSONTestSuite/test_parsing/n_incomplete_false.json
file added
+1
tests/JSONTestSuite/test_parsing/n_incomplete_null.json
file added
+1
tests/JSONTestSuite/test_parsing/n_incomplete_true.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_++.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_+1.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_+Inf.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_-01.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_-NaN.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_0_capital_E+.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_0_capital_E.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_0e+.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_0e.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_1_000.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_1eE2.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_Inf.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_NaN.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_U+FF11_fullwidth_digit_one.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_expression.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_hex_1_digit.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_hex_2_digits.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_infinity.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_invalid+-.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_invalid-negative-real.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_invalid-utf-8-in-bigger-int.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_invalid-utf-8-in-exponent.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_invalid-utf-8-in-int.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_minus_infinity.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_minus_sign_with_trailing_garbage.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_minus_space_1.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_neg_int_starting_with_zero.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_neg_real_without_int_part.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_neg_with_garbage_at_end.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_real_garbage_after_e.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_real_with_invalid_utf8_after_e.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_real_without_fractional_part.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_starting_with_dot.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_then_00.json
file added
+0
tests/JSONTestSuite/test_parsing/n_number_with_alpha.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_with_alpha_char.json
file added
+1
tests/JSONTestSuite/test_parsing/n_number_with_leading_zero.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_bad_value.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_bracket_key.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_comma_instead_of_colon.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_double_colon.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_emoji.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_garbage_at_end.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_key_with_single_quotes.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_missing_colon.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_missing_key.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_missing_semicolon.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_missing_value.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_no-colon.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_non_string_key.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_non_string_key_but_huge_number_instead.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_pi_in_key_and_trailing_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_repeated_null_null.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_several_trailing_commas.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_single_quote.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_trailing_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_trailing_comment.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_trailing_comment_open.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_trailing_comment_slash_open.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_trailing_comment_slash_open_incomplete.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_two_commas_in_a_row.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_unquoted_key.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_unterminated-value.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_with_single_string.json
file added
+1
tests/JSONTestSuite/test_parsing/n_object_with_trailing_garbage.json
file added
+1
tests/JSONTestSuite/test_parsing/n_single_space.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_1_surrogate_then_escape u.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_1_surrogate_then_escape u1.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_1_surrogate_then_escape u1x.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_1_surrogate_then_escape.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_UTF8_surrogate_U+D800.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_accentuated_char_no_quotes.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_backslash_00.json
file added
+0
tests/JSONTestSuite/test_parsing/n_string_escape_x.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_escaped_backslash_bad.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_escaped_ctrl_char_tab.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_escaped_emoji.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_incomplete_escape.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_incomplete_escaped_character.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_incomplete_surrogate.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_incomplete_surrogate_escape_invalid.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_invalid-utf-8-in-escape.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_invalid_backslash_esc.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_invalid_unicode_escape.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_invalid_utf-8.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_invalid_utf8_after_escape.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_iso_latin_1.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_leading_uescaped_thinspace.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_lone_utf8_continuation_byte.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_no_quotes_with_bad_escape.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_overlong_sequence_2_bytes.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_overlong_sequence_6_bytes.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_overlong_sequence_6_bytes_null.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_single_doublequote.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_single_quote.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_single_string_no_double_quotes.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_start_escape_unclosed.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_unescaped_crtl_char.json
file added
+0
tests/JSONTestSuite/test_parsing/n_string_unescaped_newline.json
file added
+2
tests/JSONTestSuite/test_parsing/n_string_unescaped_tab.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_unicode_CapitalU.json
file added
+1
tests/JSONTestSuite/test_parsing/n_string_with_trailing_garbage.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_100000_opening_arrays.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_U+2060_word_joined.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_UTF8_BOM_no_data.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_array_trailing_garbage.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_array_with_extra_array_close.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_array_with_unclosed_string.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_ascii-unicode-identifier.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_capitalized_True.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_close_unopened_array.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_comma_instead_of_closing_brace.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_double_array.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_end_array.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_incomplete_UTF8_BOM.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_lone-invalid-utf-8.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_lone-open-bracket.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_no_data.json
file added
+0
tests/JSONTestSuite/test_parsing/n_structure_null-byte-outside-string.json
file added
+0
tests/JSONTestSuite/test_parsing/n_structure_null.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_number_with_trailing_garbage.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_object_followed_by_closing_object.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_object_unclosed_no_value.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_object_with_comment.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_object_with_trailing_garbage.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_array_apostrophe.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_array_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_array_object.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_array_open_object.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_array_open_string.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_array_string.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_object.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_object_close_array.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_object_comma.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_object_open_array.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_object_open_string.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_object_string_with_apostrophes.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_open_open.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_single_point.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_single_star.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_trailing_#.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_uescaped_LF_before_string.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_unclosed_array.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_unclosed_array_partial_null.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_unclosed_array_unfinished_false.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_unclosed_array_unfinished_true.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_unclosed_object.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_unicode-identifier.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_whitespace_U+2060_word_joiner.json
file added
+1
tests/JSONTestSuite/test_parsing/n_structure_whitespace_formfeed.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_arraysWithSpaces.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_empty-string.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_empty.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_ending_with_newline.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_false.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_heterogeneous.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_null.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_with_1_and_newline.json
file added
+2
tests/JSONTestSuite/test_parsing/y_array_with_leading_space.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_with_several_null.json
file added
+1
tests/JSONTestSuite/test_parsing/y_array_with_trailing_space.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_0e+1.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_0e1.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_after_space.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_double_close_to_zero.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_double_huge_neg_exp.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_huge_exp.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_int_with_exp.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_minus_zero.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_neg_int_huge_exp.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_negative_int.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_negative_one.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_negative_zero.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_pos_double_huge_exp.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_capital_e.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_capital_e_neg_exp.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_capital_e_pos_exp.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_exponent.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_fraction_exponent.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_neg_exp.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_neg_overflow.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_pos_exponent.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_pos_overflow.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_real_underflow.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_simple_int.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_simple_real.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_too_big_neg_int.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_too_big_pos_int.json
file added
+1
tests/JSONTestSuite/test_parsing/y_number_very_big_negative_int.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_basic.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_duplicated_key.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_duplicated_key_and_value.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_empty.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_empty_key.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_escaped_null_in_key.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_extreme_numbers.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_long_strings.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_simple.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_string_unicode.json
file added
+1
tests/JSONTestSuite/test_parsing/y_object_with_newlines.json
file added
+3
tests/JSONTestSuite/test_parsing/y_string_1_2_3_bytes_UTF-8_sequences.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_accepted_surrogate_pair.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_accepted_surrogate_pairs.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_allowed_escapes.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_backslash_and_u_escaped_zero.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_backslash_doublequotes.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_comments.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_double_escape_a.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_double_escape_n.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_escaped_control_character.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_escaped_noncharacter.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_in_array.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_in_array_with_leading_space.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_last_surrogates_1_and_2.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_newline_uescaped.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_nonCharacterInUTF-8_U+10FFFF.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_nonCharacterInUTF-8_U+1FFFF.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_nonCharacterInUTF-8_U+FFFF.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_null_escape.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_one-byte-utf-8.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_pi.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_simple_ascii.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_space.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_three-byte-utf-8.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_two-byte-utf-8.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_u+2028_line_sep.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_u+2029_par_sep.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_uEscape.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_unescaped_char_delete.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_unicode.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_unicodeEscapedBackslash.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_unicode_2.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_unicode_U+2064_invisible_plus.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_unicode_escaped_double_quote.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_utf16BE_no_BOM.json
file added
+0
tests/JSONTestSuite/test_parsing/y_string_utf16LE_no_BOM.json
file added
+0
tests/JSONTestSuite/test_parsing/y_string_utf8.json
file added
+1
tests/JSONTestSuite/test_parsing/y_string_with_del_character.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_lonely_false.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_lonely_int.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_lonely_negative_real.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_lonely_null.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_lonely_string.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_lonely_true.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_string_empty.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_trailing_newline.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_true_in_array.json
file added
+1
tests/JSONTestSuite/test_parsing/y_structure_whitespace_array.json
file added
+1
tests/JSONTestSuite/test_transform/number_1000000000000000.json
file added
+1
tests/JSONTestSuite/test_transform/number_10000000000000000999.json
file added
+1
tests/JSONTestSuite/test_transform/number_1e-999.json
file added
+1
tests/JSONTestSuite/test_transform/number_1e6.json
file added
+1
tests/JSONTestSuite/test_transform/object_key_nfc_nfd.json
file added
+1
tests/JSONTestSuite/test_transform/object_key_nfd_nfc.json
file added
+1
tests/JSONTestSuite/test_transform/object_same_key_different_values.json
file added
+1
tests/JSONTestSuite/test_transform/object_same_key_same_value.json
file added
+1
tests/JSONTestSuite/test_transform/object_same_key_unclear_values.json
file added
+1
tests/JSONTestSuite/test_transform/string_1_escaped_invalid_codepoint.json
file added
+1
tests/JSONTestSuite/test_transform/string_1_invalid_codepoint.json
file added
+1
tests/JSONTestSuite/test_transform/string_2_escaped_invalid_codepoints.json
file added
+1
tests/JSONTestSuite/test_transform/string_2_invalid_codepoints.json
file added
+1
tests/JSONTestSuite/test_transform/string_3_escaped_invalid_codepoints.json
file added
+1
tests/JSONTestSuite/test_transform/string_3_invalid_codepoints.json
file added
+1
tests/JSONTestSuite/test_transform/string_with_escaped_NULL.json
file added
+1
tests/Options.hs
file added
+56
tests/Properties.hs
file added
+558
tests/SerializationFormatSpec.hs
file added
+271
tests/Tests.hs
file added
+14
tests/Types.hs
file added
+171
tests/UnitTests.hs
file added
+542
tests/UnitTests/NullaryConstructors.hs
file added
+63
    ghc-aeson-1.2.3.0 base
    
        
file added
+471
file added
+16
file added
+30
file added
+69
file added
+2040
file added
+101
file added
+142
file added
+30
file added
+28
file added
+3
file added
+255
file added
+231
file added
+44
file added
+25
file added
+15
file added
+20
file added
+19
file added
+24
file added
+25
file added
+556
file added
+37
file added
+41
file added
+81
file added
+15
file added
+24
file added
+17
file added
+15
file added
+12
file added
+9
file added
+416
file added
+17
file added
+169
file added
+56
file added
+558
file added
+14
file added
+171
file added
+542