├── tools ├── jsoncons │ ├── css │ │ └── jsoncons.css │ ├── build │ │ ├── scons │ │ │ └── site_scons │ │ │ │ └── __init__.py │ │ └── cmake │ │ │ ├── config.cmake │ │ │ ├── Darwin.cmake │ │ │ └── Windows.cmake │ ├── tests │ │ ├── input │ │ │ ├── JSON_checker │ │ │ │ ├── fail29.json │ │ │ │ ├── fail30.json │ │ │ │ ├── fail31.json │ │ │ │ ├── fail16.json │ │ │ │ ├── fail33.json │ │ │ │ ├── fail2.json │ │ │ │ ├── fail24.json │ │ │ │ ├── fail4.json │ │ │ │ ├── fail8.json │ │ │ │ ├── fail19.json │ │ │ │ ├── fail23.json │ │ │ │ ├── fail27.json │ │ │ │ ├── fail28.json │ │ │ │ ├── fail9.json │ │ │ │ ├── fail20.json │ │ │ │ ├── fail5.json │ │ │ │ ├── fail6.json │ │ │ │ ├── fail7.json │ │ │ │ ├── fail11.json │ │ │ │ ├── fail12.json │ │ │ │ ├── fail14.json │ │ │ │ ├── fail21.json │ │ │ │ ├── fail25.json │ │ │ │ ├── fail15.json │ │ │ │ ├── fail17.json │ │ │ │ ├── fail22.json │ │ │ │ ├── fail3.json │ │ │ │ ├── fail26.json │ │ │ │ ├── fail32.json │ │ │ │ ├── fail13.json │ │ │ │ ├── fail18.json │ │ │ │ ├── pass2.json │ │ │ │ ├── fail1.json │ │ │ │ ├── fail10.json │ │ │ │ ├── Acknowledgement.txt │ │ │ │ └── pass3.json │ │ │ ├── JSONPath │ │ │ │ ├── query8.jsonpath │ │ │ │ ├── query1.jsonpath │ │ │ │ ├── query3.jsonpath │ │ │ │ ├── query5.jsonpath │ │ │ │ ├── query4.jsonpath │ │ │ │ ├── query6.jsonpath │ │ │ │ ├── query7.jsonpath │ │ │ │ ├── query2.jsonpath │ │ │ │ ├── query9.jsonpath │ │ │ │ ├── query2.json │ │ │ │ ├── query3.json │ │ │ │ ├── query5.json │ │ │ │ └── query6.json │ │ │ ├── JSONTestSuite │ │ │ │ ├── n_number_+1.json │ │ │ │ ├── n_number_-01.json │ │ │ │ ├── n_number_-2..json │ │ │ │ ├── n_number_.-1.json │ │ │ │ ├── n_number_0e+.json │ │ │ │ ├── n_number_0e.json │ │ │ │ ├── n_number_Inf.json │ │ │ │ ├── n_number_NaN.json │ │ │ │ ├── n_single_space.json │ │ │ │ ├── y_array_empty.json │ │ │ │ ├── y_number.json │ │ │ │ ├── y_number_0e1.json │ │ │ │ ├── y_object_empty.json │ │ │ │ ├── y_string_pi.json │ │ │ │ ├── y_string_space.json │ │ │ │ ├── n_array_incomplete.json │ │ │ │ ├── n_array_just_comma.json │ │ │ │ ├── n_array_just_minus.json │ │ │ │ ├── n_array_star_inside.json │ │ │ │ ├── n_array_unclosed.json │ │ │ │ ├── n_incomplete_null.json │ │ │ │ ├── n_incomplete_true.json │ │ │ │ ├── n_number_++.json │ │ │ │ ├── n_number_+Inf.json │ │ │ │ ├── n_number_-1.0..json │ │ │ │ ├── n_number_-NaN.json │ │ │ │ ├── n_number_.2e-3.json │ │ │ │ ├── n_number_0.1.2.json │ │ │ │ ├── n_number_0.3e+.json │ │ │ │ ├── n_number_0.3e.json │ │ │ │ ├── n_number_0.e1.json │ │ │ │ ├── n_number_1.0e+.json │ │ │ │ ├── n_number_1.0e-.json │ │ │ │ ├── n_number_1.0e.json │ │ │ │ ├── n_number_1eE2.json │ │ │ │ ├── n_number_2.e+3.json │ │ │ │ ├── n_number_2.e-3.json │ │ │ │ ├── n_number_2.e3.json │ │ │ │ ├── n_number_9.e+.json │ │ │ │ ├── n_object_emoji.json │ │ │ │ ├── n_object_no-colon.json │ │ │ │ ├── n_structure_end_array.json │ │ │ │ ├── n_structure_no_data.json │ │ │ │ ├── y_array_false.json │ │ │ │ ├── y_array_null.json │ │ │ │ ├── y_number_0e+1.json │ │ │ │ ├── y_string_utf8.json │ │ │ │ ├── n_array_double_comma.json │ │ │ │ ├── n_array_extra_close.json │ │ │ │ ├── n_array_extra_comma.json │ │ │ │ ├── n_incomplete_false.json │ │ │ │ ├── n_number_0_capital_E+.json │ │ │ │ ├── n_number_0_capital_E.json │ │ │ │ ├── n_number_1_000.json │ │ │ │ ├── n_number_expression.json │ │ │ │ ├── n_number_hex_1_digit.json │ │ │ │ ├── n_number_hex_2_digits.json │ │ │ │ ├── n_number_infinity.json │ │ │ │ ├── n_number_invalid+-.json │ │ │ │ ├── n_number_minus_space_1.json │ │ │ │ ├── n_number_with_alpha.json │ │ │ │ ├── n_object_missing_key.json │ │ │ │ ├── n_object_missing_value.json │ │ │ │ ├── n_string_backslash_00.json │ │ │ │ ├── n_string_escape_x.json │ │ │ │ ├── n_string_unescaped_tab.json │ │ │ │ ├── n_structure_open_object.json │ │ │ │ ├── n_structure_single_star.json │ │ │ │ ├── y_array_empty-string.json │ │ │ │ ├── y_number_after_space.json │ │ │ │ ├── y_number_int_with_exp.json │ │ │ │ ├── y_number_minus_zero.json │ │ │ │ ├── y_number_negative_int.json │ │ │ │ ├── y_number_negative_one.json │ │ │ │ ├── y_number_negative_zero.json │ │ │ │ ├── y_number_real_neg_exp.json │ │ │ │ ├── y_number_simple_int.json │ │ │ │ ├── y_object_basic.json │ │ │ │ ├── y_object_empty_key.json │ │ │ │ ├── y_object_simple.json │ │ │ │ ├── y_string_in_array.json │ │ │ │ ├── y_string_unicode.json │ │ │ │ ├── y_string_unicode_2.json │ │ │ │ ├── y_structure_lonely_int.json │ │ │ │ ├── y_structure_lonely_null.json │ │ │ │ ├── y_structure_lonely_true.json │ │ │ │ ├── y_structure_string_empty.json │ │ │ │ ├── n_array_comma_after_close.json │ │ │ │ ├── n_array_comma_and_number.json │ │ │ │ ├── n_array_missing_value.json │ │ │ │ ├── n_array_number_and_comma.json │ │ │ │ ├── n_multidigit_number_then_00.json │ │ │ │ ├── n_number_starting_with_dot.json │ │ │ │ ├── n_number_with_leading_zero.json │ │ │ │ ├── n_object_bad_value.json │ │ │ │ ├── n_object_double_colon.json │ │ │ │ ├── n_object_missing_colon.json │ │ │ │ ├── n_object_non_string_key.json │ │ │ │ ├── n_object_single_quote.json │ │ │ │ ├── n_object_trailing_comma.json │ │ │ │ ├── n_object_unquoted_key.json │ │ │ │ ├── n_string_escaped_emoji.json │ │ │ │ ├── n_string_incomplete_escape.json │ │ │ │ ├── n_string_single_doublequote.json │ │ │ │ ├── n_structure_UTF8_BOM_no_data.json │ │ │ │ ├── n_structure_angle_bracket_..json │ │ │ │ ├── n_structure_double_array.json │ │ │ │ ├── n_structure_lone-open-bracket.json │ │ │ │ ├── n_structure_open_array_comma.json │ │ │ │ ├── n_structure_open_object_comma.json │ │ │ │ ├── n_structure_unclosed_array.json │ │ │ │ ├── n_structure_unicode-identifier.json │ │ │ │ ├── y_array_arraysWithSpaces.json │ │ │ │ ├── y_array_ending_with_newline.json │ │ │ │ ├── y_array_with_leading_space.json │ │ │ │ ├── y_array_with_trailing_space.json │ │ │ │ ├── y_number_real_capital_e.json │ │ │ │ ├── y_number_real_exponent.json │ │ │ │ ├── y_number_real_pos_exponent.json │ │ │ │ ├── y_number_simple_real.json │ │ │ │ ├── y_string_double_escape_a.json │ │ │ │ ├── y_string_double_escape_n.json │ │ │ │ ├── y_string_null_escape.json │ │ │ │ ├── y_string_simple_ascii.json │ │ │ │ ├── y_string_u+2028_line_sep.json │ │ │ │ ├── y_string_u+2029_par_sep.json │ │ │ │ ├── y_structure_lonely_false.json │ │ │ │ ├── y_structure_lonely_string.json │ │ │ │ ├── y_structure_true_in_array.json │ │ │ │ ├── y_structure_whitespace_array.json │ │ │ │ ├── i_number_neg_int_huge_exp.json │ │ │ │ ├── i_structure_UTF-8_BOM_empty_object.json │ │ │ │ ├── n_array_1_true_without_comma.json │ │ │ │ ├── n_array_colon_instead_of_comma.json │ │ │ │ ├── n_array_double_extra_comma.json │ │ │ │ ├── n_array_incomplete_invalid_value.json │ │ │ │ ├── n_array_inner_array_no_comma.json │ │ │ │ ├── n_array_unclosed_trailing_comma.json │ │ │ │ ├── n_number_minus_infinity.json │ │ │ │ ├── n_number_neg_with_garbage_at_end.json │ │ │ │ ├── n_number_real_garbage_after_e.json │ │ │ │ ├── n_object_bracket_key.json │ │ │ │ ├── n_object_garbage_at_end.json │ │ │ │ ├── n_object_missing_semicolon.json │ │ │ │ ├── n_object_unterminated-value.json │ │ │ │ ├── n_string_escaped_backslash_bad.json │ │ │ │ ├── n_string_escaped_ctrl_char_tab.json │ │ │ │ ├── n_string_invalid_backslash_esc.json │ │ │ │ ├── n_string_single_quote.json │ │ │ │ ├── n_string_start_escape_unclosed.json │ │ │ │ ├── n_string_unescaped_crtl_char.json │ │ │ │ ├── n_string_unicode_CapitalU.json │ │ │ │ ├── n_string_with_trailing_garbage.json │ │ │ │ ├── n_structure_U+2060_word_joined.json │ │ │ │ ├── n_structure_capitalized_True.json │ │ │ │ ├── n_structure_close_unopened_array.json │ │ │ │ ├── n_structure_open_array_apostrophe.json │ │ │ │ ├── n_structure_open_array_open_object.json │ │ │ │ ├── n_structure_open_array_open_string.json │ │ │ │ ├── n_structure_open_array_string.json │ │ │ │ ├── n_structure_open_object_close_array.json │ │ │ │ ├── n_structure_open_object_open_array.json │ │ │ │ ├── n_structure_open_open.json │ │ │ │ ├── n_structure_trailing_#.json │ │ │ │ ├── n_structure_whitespace_formfeed.json │ │ │ │ ├── y_array_with_1_and_newline.json │ │ │ │ ├── y_number_real_capital_e_neg_exp.json │ │ │ │ ├── y_number_real_capital_e_pos_exp.json │ │ │ │ ├── y_object.json │ │ │ │ ├── y_string_backslash_doublequotes.json │ │ │ │ ├── y_string_comments.json │ │ │ │ ├── y_string_one-byte-utf-8.json │ │ │ │ ├── y_string_three-byte-utf-8.json │ │ │ │ ├── y_string_two-byte-utf-8.json │ │ │ │ ├── y_string_unescaped_char_delete.json │ │ │ │ ├── y_string_with_del_character.json │ │ │ │ ├── y_structure_lonely_negative_real.json │ │ │ │ ├── i_number_double_huge_neg_exp.json │ │ │ │ ├── i_number_pos_double_huge_exp.json │ │ │ │ ├── i_number_real_neg_overflow.json │ │ │ │ ├── i_number_real_pos_overflow.json │ │ │ │ ├── i_number_real_underflow.json │ │ │ │ ├── i_string_invalid_surrogate.json │ │ │ │ ├── i_string_lone_second_surrogate.json │ │ │ │ ├── n_array_items_separated_by_semicolon.json │ │ │ │ ├── n_array_number_and_several_commas.json │ │ │ │ ├── n_array_unclosed_with_object_inside.json │ │ │ │ ├── n_number_U+FF11_fullwidth_digit_one.json │ │ │ │ ├── n_number_neg_int_starting_with_zero.json │ │ │ │ ├── n_number_neg_real_without_int_part.json │ │ │ │ ├── n_number_real_without_fractional_part.json │ │ │ │ ├── n_object_comma_instead_of_colon.json │ │ │ │ ├── n_object_trailing_comment.json │ │ │ │ ├── n_object_with_trailing_garbage.json │ │ │ │ ├── n_string_accentuated_char_no_quotes.json │ │ │ │ ├── n_string_invalid_unicode_escape.json │ │ │ │ ├── n_string_no_quotes_with_bad_escape.json │ │ │ │ ├── n_string_single_string_no_double_quotes.json │ │ │ │ ├── n_string_unescaped_newline.json │ │ │ │ ├── n_structure_angle_bracket_null.json │ │ │ │ ├── n_structure_array_trailing_garbage.json │ │ │ │ ├── n_structure_ascii-unicode-identifier.json │ │ │ │ ├── n_structure_null-byte-outside-string.json │ │ │ │ ├── n_structure_number_with_trailing_garbage.json │ │ │ │ ├── n_structure_object_unclosed_no_value.json │ │ │ │ ├── n_structure_open_object_open_string.json │ │ │ │ ├── n_structure_unclosed_object.json │ │ │ │ ├── y_array_heterogeneous.json │ │ │ │ ├── y_object_duplicated_key.json │ │ │ │ ├── y_object_with_newlines.json │ │ │ │ ├── y_string_escaped_noncharacter.json │ │ │ │ ├── y_string_nbsp_uescaped.json │ │ │ │ ├── y_string_nonCharacterInUTF-8_U+1FFFF.json │ │ │ │ ├── y_string_nonCharacterInUTF-8_U+FFFF.json │ │ │ │ ├── y_string_uescaped_newline.json │ │ │ │ ├── y_string_unicodeEscapedBackslash.json │ │ │ │ ├── y_string_unicode_U+FDD0_nonchar.json │ │ │ │ ├── y_string_unicode_U+FFFE_nonchar.json │ │ │ │ ├── y_structure_trailing_newline.json │ │ │ │ ├── i_number_too_big_pos_int.json │ │ │ │ ├── i_object_key_lone_2nd_surrogate.json │ │ │ │ ├── i_string_incomplete_surrogate_pair.json │ │ │ │ ├── i_string_invalid_lonely_surrogate.json │ │ │ │ ├── n_array_newlines_unclosed.json │ │ │ │ ├── n_array_spaces_vertical_tab_formfeed.json │ │ │ │ ├── n_array_unclosed_with_new_lines.json │ │ │ │ ├── n_number_invalid-negative-real.json │ │ │ │ ├── n_number_minus_sign_with_trailing_garbage.json │ │ │ │ ├── n_object_key_with_single_quotes.json │ │ │ │ ├── n_object_several_trailing_commas.json │ │ │ │ ├── n_object_trailing_comment_open.json │ │ │ │ ├── n_object_trailing_comment_slash_open.json │ │ │ │ ├── n_object_two_commas_in_a_row.json │ │ │ │ ├── n_string_1_surrogate_then_escape.json │ │ │ │ ├── n_string_1_surrogate_then_escape_u.json │ │ │ │ ├── n_string_incomplete_escaped_character.json │ │ │ │ ├── n_string_incomplete_surrogate.json │ │ │ │ ├── n_structure_array_with_extra_array_close.json │ │ │ │ ├── n_structure_array_with_unclosed_string.json │ │ │ │ ├── n_structure_uescaped_LF_before_string.json │ │ │ │ ├── n_structure_whitespace_U+2060_word_joiner.json │ │ │ │ ├── y_array_with_several_null.json │ │ │ │ ├── y_number_real_fraction_exponent.json │ │ │ │ ├── y_string_allowed_escapes.json │ │ │ │ ├── y_string_escaped_control_character.json │ │ │ │ ├── y_string_in_array_with_leading_space.json │ │ │ │ ├── y_string_nonCharacterInUTF-8_U+10FFFF.json │ │ │ │ ├── y_string_uEscape.json │ │ │ │ ├── y_string_unicode_escaped_double_quote.json │ │ │ │ ├── i_string_1st_surrogate_but_2nd_missing.json │ │ │ │ ├── i_string_inverted_surrogates_U+1D11E.json │ │ │ │ ├── n_number_with_alpha_char.json │ │ │ │ ├── n_object_repeated_null_null.json │ │ │ │ ├── n_object_with_single_string.json │ │ │ │ ├── n_string_1_surrogate_then_escape_u1.json │ │ │ │ ├── n_string_1_surrogate_then_escape_u1x.json │ │ │ │ ├── n_string_leading_uescaped_thinspace.json │ │ │ │ ├── n_structure_object_followed_by_closing_object.json │ │ │ │ ├── n_structure_object_with_comment.json │ │ │ │ ├── n_structure_open_object_string_with_apostrophes.json │ │ │ │ ├── n_structure_unclosed_array_partial_null.json │ │ │ │ ├── y_object_duplicated_key_and_value.json │ │ │ │ ├── y_object_escaped_null_in_key.json │ │ │ │ ├── y_string_accepted_surrogate_pair.json │ │ │ │ ├── y_string_backslash_and_u_escaped_zero.json │ │ │ │ ├── y_string_last_surrogates_1_and_2.json │ │ │ │ ├── y_string_unicode_U+10FFFE_nonchar.json │ │ │ │ ├── y_string_unicode_U+1FFFE_nonchar.json │ │ │ │ ├── y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json │ │ │ │ ├── y_string_unicode_U+2064_invisible_plus.json │ │ │ │ ├── i_number_too_big_neg_int.json │ │ │ │ ├── i_string_1st_valid_surrogate_2nd_invalid.json │ │ │ │ ├── n_object_trailing_comment_slash_open_incomplete.json │ │ │ │ ├── n_structure_comma_instead_of_closing_brace.json │ │ │ │ ├── n_structure_object_with_trailing_garbage.json │ │ │ │ ├── n_structure_unclosed_array_unfinished_false.json │ │ │ │ ├── n_structure_unclosed_array_unfinished_true.json │ │ │ │ ├── i_string_incomplete_surrogate_and_escape_valid.json │ │ │ │ ├── i_string_incomplete_surrogates_escape_valid.json │ │ │ │ ├── n_object_non_string_key_but_huge_number_instead.json │ │ │ │ ├── n_string_incomplete_surrogate_escape_invalid.json │ │ │ │ ├── y_object_extreme_numbers.json │ │ │ │ ├── y_string_1_2_3_bytes_UTF-8_sequences.json │ │ │ │ ├── y_string_accepted_surrogate_pairs.json │ │ │ │ ├── y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json │ │ │ │ ├── i_number_very_big_negative_int.json │ │ │ │ ├── y_number_double_close_to_zero.json │ │ │ │ ├── y_object_long_strings.json │ │ │ │ ├── y_object_string_unicode.json │ │ │ │ ├── i_number_huge_exp.json │ │ │ │ ├── i_string_iso_latin_1.json │ │ │ │ ├── n_array_invalid_utf8.json │ │ │ │ ├── i_string_invalid_utf-8.json │ │ │ │ ├── i_string_utf16BE_no_BOM.json │ │ │ │ ├── i_string_utf16LE_no_BOM.json │ │ │ │ ├── n_array_a_invalid_utf8.json │ │ │ │ ├── i_string_truncated-utf-8.json │ │ │ │ ├── n_structure_single_eacute.json │ │ │ │ ├── i_string_UTF-16LE_with_BOM.json │ │ │ │ ├── i_string_UTF8_surrogate_U+D800.json │ │ │ │ ├── i_string_not_in_unicode_range.json │ │ │ │ ├── n_number_invalid-utf-8-in-int.json │ │ │ │ ├── n_structure_lone-invalid-utf-8.json │ │ │ │ ├── i_string_UTF-8_invalid_sequence.json │ │ │ │ ├── n_string_invalid-utf-8-in-escape.json │ │ │ │ ├── n_structure_incomplete_UTF8_BOM.json │ │ │ │ ├── i_string_overlong_sequence_2_bytes.json │ │ │ │ ├── i_string_overlong_sequence_6_bytes.json │ │ │ │ ├── n_number_invalid-utf-8-in-exponent.json │ │ │ │ ├── n_string_invalid_utf8_after_escape.json │ │ │ │ ├── i_string_lone_utf8_continuation_byte.json │ │ │ │ ├── n_number_invalid-utf-8-in-bigger-int.json │ │ │ │ ├── n_object_pi_in_key_and_trailing_comma.json │ │ │ │ ├── i_string_overlong_sequence_6_bytes_null.json │ │ │ │ └── n_number_real_with_invalid_utf8_after_e.json │ │ │ ├── persons.json │ │ │ ├── countries.csv │ │ │ └── countries.json │ │ ├── build │ │ │ ├── cmake │ │ │ │ ├── .gitignore │ │ │ │ ├── run_tests.sh │ │ │ │ ├── run_tests_vc140x64.cmd │ │ │ │ └── build_vc140x64.cmd │ │ │ └── scons │ │ │ │ └── run_tests.sh │ │ └── output │ │ │ └── store.cbor │ ├── examples │ │ ├── output │ │ │ ├── xxx.txt │ │ │ └── tasks.csv │ │ ├── input │ │ │ ├── multiple-json-objects.json │ │ │ ├── countries.json │ │ │ └── tasks.csv │ │ └── build │ │ │ └── cmake │ │ │ ├── run_examples_vc140x64.cmd │ │ │ └── build_vc140x64.cmd │ └── doc │ │ ├── ref │ │ ├── json │ │ │ ├── as.md │ │ │ └── destructor.md │ │ ├── jsonpath │ │ │ └── jsonpath.md │ │ ├── line_split_kind.md │ │ └── json_serializing_options.md │ │ ├── Roadmap.md │ │ └── build.md ├── external │ ├── CMakeLists.txt │ └── wabt │ │ ├── .clang-format │ │ ├── test │ │ ├── parse │ │ │ ├── expr │ │ │ │ ├── nop.txt │ │ │ │ ├── return-void.txt │ │ │ │ ├── unreachable.txt │ │ │ │ ├── br.txt │ │ │ │ ├── br-named.txt │ │ │ │ ├── call.txt │ │ │ │ ├── getlocal.txt │ │ │ │ ├── setlocal.txt │ │ │ │ ├── br-loop.txt │ │ │ │ ├── getlocal-param.txt │ │ │ │ ├── loop.txt │ │ │ │ ├── return.txt │ │ │ │ ├── if.txt │ │ │ │ ├── call-named.txt │ │ │ │ ├── current-memory.txt │ │ │ │ ├── getlocal-named.txt │ │ │ │ ├── getlocal-param-named.txt │ │ │ │ ├── if-then-br.txt │ │ │ │ ├── setlocal-named.txt │ │ │ │ ├── setlocal-param.txt │ │ │ │ ├── throw.txt │ │ │ │ ├── block-named.txt │ │ │ │ ├── brif.txt │ │ │ │ ├── getglobal.txt │ │ │ │ ├── setlocal-param-named.txt │ │ │ │ ├── brif-named.txt │ │ │ │ ├── getlocal-index-after-param.txt │ │ │ │ ├── grow-memory.txt │ │ │ │ ├── setglobal.txt │ │ │ │ ├── tee_local.txt │ │ │ │ ├── getglobal-named.txt │ │ │ │ ├── if-then-br-named.txt │ │ │ │ ├── setglobal-named.txt │ │ │ │ ├── expr-br.txt │ │ │ │ ├── setlocal-index-after-param.txt │ │ │ │ ├── call-name-prefix.txt │ │ │ │ ├── callimport-named.txt │ │ │ │ ├── loop-named.txt │ │ │ │ ├── if-then-else.txt │ │ │ │ ├── br-block.txt │ │ │ │ ├── block.txt │ │ │ │ ├── return-block.txt │ │ │ │ ├── callimport.txt │ │ │ │ ├── rethrow.txt │ │ │ │ ├── block-return.txt │ │ │ │ ├── if-then-else-list.txt │ │ │ │ ├── callindirect.txt │ │ │ │ ├── drop.txt │ │ │ │ ├── callindirect-named.txt │ │ │ │ ├── callimport-type.txt │ │ │ │ ├── return-if.txt │ │ │ │ ├── call-defined-later.txt │ │ │ │ ├── expr-brif.txt │ │ │ │ ├── if-return.txt │ │ │ │ ├── if-then-else-br.txt │ │ │ │ ├── brtable.txt │ │ │ │ ├── bad-br-undefined.txt │ │ │ │ ├── if-then-else-br-named.txt │ │ │ │ ├── bad-br-name-undefined.txt │ │ │ │ ├── brtable-named.txt │ │ │ │ ├── bad-nop.txt │ │ │ │ └── bad-unexpected.txt │ │ │ ├── module │ │ │ │ ├── module-empty.txt │ │ │ │ ├── type-empty.txt │ │ │ │ ├── memory-init-size.txt │ │ │ │ ├── memory-init-max-size.txt │ │ │ │ ├── start.txt │ │ │ │ ├── type-empty-param.txt │ │ │ │ ├── type-no-param.txt │ │ │ │ ├── type.txt │ │ │ │ ├── import-func-no-param.txt │ │ │ │ ├── start-named.txt │ │ │ │ ├── import-memory.txt │ │ │ │ ├── memory-segment-1.txt │ │ │ │ ├── export-func.txt │ │ │ │ ├── import-table.txt │ │ │ │ ├── export-memory.txt │ │ │ │ ├── memory-shared.txt │ │ │ │ ├── type-multi-param.txt │ │ │ │ ├── export-table.txt │ │ │ │ ├── export-func-named.txt │ │ │ │ ├── import-except.txt │ │ │ │ ├── memory-segment-multi-string.txt │ │ │ │ ├── export-func-multi.txt │ │ │ │ ├── import-global-getglobal.txt │ │ │ │ ├── import-memory-shared.txt │ │ │ │ ├── export-memory-multi.txt │ │ │ │ ├── import-mutable-global.txt │ │ │ │ ├── except.txt │ │ │ │ ├── export-except.txt │ │ │ │ ├── import-func-type.txt │ │ │ │ ├── export-global.txt │ │ │ │ ├── data-offset.txt │ │ │ │ ├── table.txt │ │ │ │ ├── elem-offset.txt │ │ │ │ ├── table-named.txt │ │ │ │ ├── import-global.txt │ │ │ │ ├── memory-segment-many.txt │ │ │ │ └── bad-module-no-close.txt │ │ │ ├── func │ │ │ │ ├── func-named.txt │ │ │ │ ├── local-empty.txt │ │ │ │ ├── local.txt │ │ │ │ ├── param-type-1.txt │ │ │ │ ├── result-empty.txt │ │ │ │ ├── param-binding.txt │ │ │ │ ├── param-type-2.txt │ │ │ │ ├── result.txt │ │ │ │ ├── local-multi.txt │ │ │ │ ├── param-multi.txt │ │ │ │ ├── sig.txt │ │ │ │ ├── no-space.txt │ │ │ │ ├── result-multi.txt │ │ │ │ ├── bad-func-name.txt │ │ │ │ ├── bad-param.txt │ │ │ │ ├── bad-local-name.txt │ │ │ │ └── bad-local-type.txt │ │ │ ├── string-hex.txt │ │ │ ├── line-comment.txt │ │ │ ├── basic.txt │ │ │ ├── nested-comments.txt │ │ │ ├── string-escape.txt │ │ │ ├── assert │ │ │ │ ├── assertinvalid-binary-module.txt │ │ │ │ ├── assertmalformed.txt │ │ │ │ ├── assert-after-module.txt │ │ │ │ └── bad-invoke-no-module.txt │ │ │ ├── export-mutable-global.txt │ │ │ └── empty-file.txt │ │ ├── gen-spec-empty-prefix.js │ │ ├── interp │ │ │ ├── memory-empty-segment.txt │ │ │ ├── empty.txt │ │ │ ├── basic.txt │ │ │ ├── unreachable.txt │ │ │ └── expr-block.txt │ │ ├── typecheck │ │ │ ├── return-drop-value.txt │ │ │ ├── return-drop-value-2.txt │ │ │ ├── return-value.txt │ │ │ ├── if-then-br.txt │ │ │ ├── nocheck.txt │ │ │ ├── if-value.txt │ │ │ └── bad-no-shared-memory.txt │ │ ├── roundtrip │ │ │ ├── debug-import-names.txt │ │ │ ├── debug-names-after-data.txt │ │ │ ├── debug-names.txt │ │ │ ├── memory-index.txt │ │ │ ├── table-index.txt │ │ │ ├── inline-import-memory.txt │ │ │ ├── inline-export-memory.txt │ │ │ ├── inline-import-table.txt │ │ │ ├── invalid-br-var.txt │ │ │ └── invalid-local-index.txt │ │ ├── spec │ │ │ ├── fac.txt │ │ │ ├── i32.txt │ │ │ ├── i64.txt │ │ │ ├── stack.txt │ │ │ ├── comments.txt │ │ │ ├── forward.txt │ │ │ ├── traps.txt │ │ │ ├── unwind.txt │ │ │ ├── break-drop.txt │ │ │ ├── int_exprs.txt │ │ │ ├── resizing.txt │ │ │ ├── conversions.txt │ │ │ ├── endianness.txt │ │ │ ├── f32.txt │ │ │ ├── f32_bitwise.txt │ │ │ ├── f64.txt │ │ │ ├── f64_bitwise.txt │ │ │ ├── float_misc.txt │ │ │ ├── inline-module.txt │ │ │ ├── memory_trap.txt │ │ │ ├── unreachable.txt │ │ │ ├── left-to-right.txt │ │ │ ├── f32_cmp.txt │ │ │ ├── f64_cmp.txt │ │ │ ├── skip-stack-guard-page.txt │ │ │ ├── memory_redundancy.txt │ │ │ └── names.txt │ │ ├── wasm2c │ │ │ ├── spec │ │ │ │ ├── br.txt │ │ │ │ ├── fac.txt │ │ │ │ ├── if.txt │ │ │ │ ├── nop.txt │ │ │ │ ├── type.txt │ │ │ │ ├── align.txt │ │ │ │ ├── binary.txt │ │ │ │ ├── block.txt │ │ │ │ ├── br_if.txt │ │ │ │ ├── call.txt │ │ │ │ ├── const.txt │ │ │ │ ├── forward.txt │ │ │ │ ├── func.txt │ │ │ │ ├── i32.txt │ │ │ │ ├── i64.txt │ │ │ │ ├── labels.txt │ │ │ │ ├── loop.txt │ │ │ │ ├── memory.txt │ │ │ │ ├── return.txt │ │ │ │ ├── select.txt │ │ │ │ ├── stack.txt │ │ │ │ ├── switch.txt │ │ │ │ ├── token.txt │ │ │ │ ├── traps.txt │ │ │ │ ├── unwind.txt │ │ │ │ ├── address.txt │ │ │ │ ├── comments.txt │ │ │ │ ├── globals.txt │ │ │ │ ├── linking.txt │ │ │ │ ├── resizing.txt │ │ │ │ ├── typecheck.txt │ │ │ │ ├── break-drop.txt │ │ │ │ ├── endianness.txt │ │ │ │ ├── float_misc.txt │ │ │ │ ├── get_local.txt │ │ │ │ ├── int_exprs.txt │ │ │ │ ├── set_local.txt │ │ │ │ ├── store_retval.txt │ │ │ │ ├── tee_local.txt │ │ │ │ ├── unreachable.txt │ │ │ │ ├── call_indirect.txt │ │ │ │ ├── conversions.txt │ │ │ │ ├── custom_section.txt │ │ │ │ ├── exports.txt │ │ │ │ ├── f32.txt │ │ │ │ ├── f32_bitwise.txt │ │ │ │ ├── f64.txt │ │ │ │ ├── f64_bitwise.txt │ │ │ │ ├── float_memory.txt │ │ │ │ ├── inline-module.txt │ │ │ │ ├── int_literals.txt │ │ │ │ ├── left-to-right.txt │ │ │ │ ├── memory_trap.txt │ │ │ │ ├── br_table.txt │ │ │ │ ├── f32_cmp.txt │ │ │ │ ├── f64_cmp.txt │ │ │ │ ├── float_literals.txt │ │ │ │ ├── memory_redundancy.txt │ │ │ │ ├── unreached-invalid.txt │ │ │ │ ├── utf8-import-field.txt │ │ │ │ ├── utf8-import-module.txt │ │ │ │ ├── float_exprs.txt │ │ │ │ ├── skip-stack-guard-page.txt │ │ │ │ ├── utf8-custom-section-id.txt │ │ │ │ ├── utf8-invalid-encoding.txt │ │ │ │ ├── func_ptrs.txt │ │ │ │ ├── names.txt │ │ │ │ └── start.txt │ │ │ └── bad-enable-feature.txt │ │ ├── too-many-arguments.txt │ │ ├── binary │ │ │ ├── bad-magic.txt │ │ │ ├── gen-wasm-parse-error.txt │ │ │ ├── bad-version.txt │ │ │ ├── bad-linking-metadata.txt │ │ │ ├── bad-type-form.txt │ │ │ └── bad-duplicate-section.txt │ │ ├── regress │ │ │ ├── regress-6.txt │ │ │ ├── regress-16.txt │ │ │ ├── regress-13.txt │ │ │ └── regress-12.txt │ │ └── dump │ │ │ ├── bad-version.txt │ │ │ └── bad-version-logging.txt │ │ ├── wasm2c │ │ └── examples │ │ │ └── fac │ │ │ ├── fac.wasm │ │ │ └── fac.wat │ │ ├── fuzz-in │ │ ├── wast │ │ │ └── basic.txt │ │ └── wasm │ │ │ └── stuff.wasm │ │ ├── .style.yapf │ │ ├── demo │ │ └── third_party │ │ │ └── split │ │ │ ├── vertical.png │ │ │ └── horizontal.png │ │ └── cmake │ │ └── README.md ├── ld │ └── CMakeLists.txt ├── init │ └── CMakeLists.txt ├── abidiff │ └── CMakeLists.txt ├── abigen │ └── CMakeLists.txt └── cc │ └── CMakeLists.txt ├── libraries ├── boost │ ├── include │ │ └── boost │ │ │ ├── core │ │ │ ├── ref.hpp314014 │ │ │ ├── enable_if.hpp56631 │ │ │ └── addressof.hpp314015 │ │ │ ├── mpl │ │ │ ├── fold.hpp314090 │ │ │ ├── if.hpp57275 │ │ │ ├── not.hpp63250 │ │ │ ├── tag.hpp308253 │ │ │ ├── void.hpp74545 │ │ │ ├── O1_size.hpp314091 │ │ │ ├── advance.hpp350582 │ │ │ ├── aux_ │ │ │ │ ├── na.hpp57367 │ │ │ │ ├── has_apply.hpp308179 │ │ │ │ ├── has_begin.hpp90667 │ │ │ │ ├── has_size.hpp314262 │ │ │ │ ├── has_tag.hpp90901 │ │ │ │ ├── has_type.hpp328164 │ │ │ │ ├── msvc_type.hpp333876 │ │ │ │ ├── value_wknd.hpp57276 │ │ │ │ ├── yes_no.hpp90670 │ │ │ │ ├── O1_size_impl.hpp314093 │ │ │ │ ├── adl_barrier.hpp56635 │ │ │ │ ├── begin_end_impl.hpp74543 │ │ │ │ ├── is_msvc_eti_arg.hpp90910 │ │ │ │ ├── largest_int.hpp344657 │ │ │ │ ├── msvc_eti_base.hpp308273 │ │ │ │ ├── type_wrapper.hpp90669 │ │ │ │ ├── nested_type_wknd.hpp63251 │ │ │ │ ├── numeric_cast_utils.hpp308254 │ │ │ │ ├── preprocessed │ │ │ │ │ └── gcc │ │ │ │ │ │ ├── and.hpp68792 │ │ │ │ │ │ ├── or.hpp123422 │ │ │ │ │ │ ├── apply.hpp333874 │ │ │ │ │ │ ├── bind.hpp325026 │ │ │ │ │ │ ├── inherit.hpp383331 │ │ │ │ │ │ ├── quote.hpp328222 │ │ │ │ │ │ ├── apply_fwd.hpp319709 │ │ │ │ │ │ ├── apply_wrap.hpp308252 │ │ │ │ │ │ ├── bind_fwd.hpp320025 │ │ │ │ │ │ ├── fold_impl.hpp339282 │ │ │ │ │ │ ├── full_lambda.hpp328289 │ │ │ │ │ │ ├── advance_backward.hpp361548 │ │ │ │ │ │ ├── advance_forward.hpp361518 │ │ │ │ │ │ ├── iter_fold_impl.hpp367060 │ │ │ │ │ │ ├── less.hpp350618 │ │ │ │ │ │ ├── minus.hpp404273 │ │ │ │ │ │ ├── plus.hpp344690 │ │ │ │ │ │ ├── template_arity.hpp328252 │ │ │ │ │ │ ├── equal_to.hpp308329 │ │ │ │ │ │ └── placeholders.hpp319930 │ │ │ │ └── template_arity_fwd.hpp57588 │ │ │ ├── begin_end.hpp74542 │ │ │ ├── deref.hpp333875 │ │ │ ├── distance.hpp367028 │ │ │ ├── eval_if.hpp85327 │ │ │ ├── identity.hpp107074 │ │ │ ├── iter_fold.hpp367030 │ │ │ ├── lambda_fwd.hpp57360 │ │ │ ├── negate.hpp356109 │ │ │ ├── protect.hpp320027 │ │ │ ├── O1_size_fwd.hpp314092 │ │ │ ├── advance_fwd.hpp350583 │ │ │ ├── begin_end_fwd.hpp63214 │ │ │ ├── distance_fwd.hpp367029 │ │ │ ├── is_sequence.hpp63249 │ │ │ ├── iterator_range.hpp372300 │ │ │ ├── iterator_tags.hpp383261 │ │ │ ├── next_prior.hpp297296 │ │ │ ├── numeric_cast.hpp308155 │ │ │ ├── sequence_tag.hpp90900 │ │ │ ├── empty_base.hpp56632 │ │ │ └── sequence_tag_fwd.hpp74544 │ │ │ ├── move │ │ │ ├── algo │ │ │ │ ├── move.hpp52112 │ │ │ │ ├── predicate.hpp52132 │ │ │ │ ├── unique.hpp52365 │ │ │ │ ├── adaptive_merge.hpp52105 │ │ │ │ ├── adaptive_sort.hpp53427 │ │ │ │ └── detail │ │ │ │ │ ├── merge.hpp52119 │ │ │ │ │ ├── pdqsort.hpp53532 │ │ │ │ │ ├── basic_op.hpp52120 │ │ │ │ │ ├── heap_sort.hpp52189 │ │ │ │ │ ├── is_sorted.hpp52191 │ │ │ │ │ ├── merge_sort.hpp52183 │ │ │ │ │ ├── insertion_sort.hpp52181 │ │ │ │ │ ├── set_difference.hpp52368 │ │ │ │ │ └── adaptive_sort_merge.hpp52107 │ │ │ ├── iterator.hpp51896 │ │ │ ├── traits.hpp52101 │ │ │ ├── core.hpp15979 │ │ │ ├── default_delete.hpp53042 │ │ │ ├── unique_ptr.hpp53036 │ │ │ ├── detail │ │ │ │ ├── destruct_n.hpp52131 │ │ │ │ ├── fwd_macros.hpp16000 │ │ │ │ ├── meta_utils.hpp15725 │ │ │ │ ├── type_traits.hpp15715 │ │ │ │ ├── iterator_traits.hpp51789 │ │ │ │ ├── meta_utils_core.hpp15727 │ │ │ │ ├── pointer_element.hpp15905 │ │ │ │ ├── reverse_iterator.hpp52109 │ │ │ │ ├── to_raw_pointer.hpp51819 │ │ │ │ ├── unique_ptr_meta_utils.hpp53038 │ │ │ │ ├── iterator_to_raw_pointer.hpp51818 │ │ │ │ └── placement_new.hpp52182 │ │ │ ├── utility_core.hpp15977 │ │ │ ├── make_unique.hpp53034 │ │ │ └── adl_move_swap.hpp16395 │ │ │ ├── pfr │ │ │ ├── detail │ │ │ │ ├── io.hpp410380 │ │ │ │ ├── detectors.hpp410378 │ │ │ │ ├── functional.hpp410370 │ │ │ │ ├── rvalue_t.hpp410343 │ │ │ │ ├── stdtuple.hpp410341 │ │ │ │ ├── cast_to_layout_compatible.hpp410352 │ │ │ │ ├── offset_based_getter.hpp410361 │ │ │ │ ├── for_each_field_impl.hpp410342 │ │ │ │ ├── sequence_tuple.hpp410340 │ │ │ │ ├── make_flat_tuple_of_references.hpp410363 │ │ │ │ └── core14_loophole.hpp410351 │ │ │ ├── flat │ │ │ │ ├── core.hpp412710 │ │ │ │ ├── io.hpp412714 │ │ │ │ ├── ops.hpp412713 │ │ │ │ ├── functors.hpp412712 │ │ │ │ └── tuple_size.hpp412711 │ │ │ └── precise │ │ │ │ ├── io.hpp410379 │ │ │ │ ├── ops.hpp410377 │ │ │ │ ├── functors.hpp410369 │ │ │ │ ├── tuple_size.hpp410344 │ │ │ │ └── core.hpp410337 │ │ │ ├── type_traits │ │ │ ├── is_void.hpp57173 │ │ │ ├── add_const.hpp129215 │ │ │ ├── conditional.hpp129931 │ │ │ ├── declval.hpp129928 │ │ │ ├── is_array.hpp57174 │ │ │ ├── is_base_of.hpp297190 │ │ │ ├── is_class.hpp57232 │ │ │ ├── is_complete.hpp56992 │ │ │ ├── is_const.hpp63211 │ │ │ ├── is_empty.hpp56878 │ │ │ ├── is_function.hpp56994 │ │ │ ├── is_pointer.hpp129284 │ │ │ ├── is_reference.hpp56995 │ │ │ ├── is_same.hpp117833 │ │ │ ├── remove_const.hpp63225 │ │ │ ├── remove_cv.hpp57210 │ │ │ ├── add_reference.hpp57241 │ │ │ ├── is_convertible.hpp56879 │ │ │ ├── remove_reference.hpp56993 │ │ │ ├── type_identity.hpp129932 │ │ │ ├── add_rvalue_reference.hpp129929 │ │ │ ├── is_base_and_derived.hpp297191 │ │ │ ├── is_lvalue_reference.hpp56996 │ │ │ ├── is_rvalue_reference.hpp56997 │ │ │ ├── is_member_function_pointer.hpp129285 │ │ │ ├── detail │ │ │ │ ├── is_function_ptr_helper.hpp56998 │ │ │ │ └── is_mem_fun_pointer_impl.hpp129293 │ │ │ └── integral_constant.hpp56805 │ │ │ ├── utility │ │ │ └── result_of.hpp129237 │ │ │ └── intrusive │ │ │ ├── detail │ │ │ ├── mpl.hpp15895 │ │ │ ├── algorithm.hpp52078 │ │ │ ├── reverse_iterator.hpp51830 │ │ │ ├── iterator.hpp51772 │ │ │ └── has_member_function_callable_with.hpp15999 │ │ │ ├── pack_options.hpp51740 │ │ │ ├── pointer_rebind.hpp15904 │ │ │ └── pointer_traits.hpp15901 │ └── CMakeLists.txt └── eosiolib │ └── stdlib.hpp ├── examples ├── send_inline │ └── ricardian │ │ └── send_inline.contracts.md └── multi_index_example │ └── ricardian │ └── multi_index_example.contracts.md └── modules └── EosioLibConfig.cmake.in /tools/jsoncons/css/jsoncons.css: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tools/jsoncons/build/scons/site_scons/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/core/ref.hpp314014: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/fold.hpp314090: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/if.hpp57275: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/not.hpp63250: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/tag.hpp308253: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/void.hpp74545: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /tools/external/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | add_subdirectory(wabt) 2 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail29.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail30.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail31.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /libraries/boost/include/boost/core/enable_if.hpp56631: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/move.hpp52112: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/iterator.hpp51896: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/traits.hpp52101: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/O1_size.hpp314091: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/advance.hpp350582: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/na.hpp57367: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/begin_end.hpp74542: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/deref.hpp333875: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/distance.hpp367028: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/eval_if.hpp85327: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/identity.hpp107074: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/iter_fold.hpp367030: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/lambda_fwd.hpp57360: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/negate.hpp356109: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/protect.hpp320027: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/io.hpp410380: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/flat/core.hpp412710: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/flat/io.hpp412714: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/flat/ops.hpp412713: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /tools/external/wabt/.clang-format: -------------------------------------------------------------------------------- 1 | BasedOnStyle: Chromium 2 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query8.jsonpath: -------------------------------------------------------------------------------- 1 | $..book[-1:] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_+1.json: -------------------------------------------------------------------------------- 1 | [+1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_-01.json: -------------------------------------------------------------------------------- 1 | [-01] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_-2..json: -------------------------------------------------------------------------------- 1 | [-2.] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_.-1.json: -------------------------------------------------------------------------------- 1 | [.-1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_0e+.json: -------------------------------------------------------------------------------- 1 | [0e+] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_0e.json: -------------------------------------------------------------------------------- 1 | [0e] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_Inf.json: -------------------------------------------------------------------------------- 1 | [Inf] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_NaN.json: -------------------------------------------------------------------------------- 1 | [NaN] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_single_space.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_empty.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number.json: -------------------------------------------------------------------------------- 1 | [123e65] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_0e1.json: -------------------------------------------------------------------------------- 1 | [0e1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_empty.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_pi.json: -------------------------------------------------------------------------------- 1 | ["π"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_space.json: -------------------------------------------------------------------------------- 1 | " " -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail16.json: -------------------------------------------------------------------------------- 1 | [\naked] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail33.json: -------------------------------------------------------------------------------- 1 | ["mismatch"} -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/predicate.hpp52132: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/unique.hpp52365: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/core.hpp15979: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/default_delete.hpp53042: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/unique_ptr.hpp53036: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/O1_size_fwd.hpp314092: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/advance_fwd.hpp350583: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/has_apply.hpp308179: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/has_begin.hpp90667: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/has_size.hpp314262: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/has_tag.hpp90901: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/has_type.hpp328164: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/msvc_type.hpp333876: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/value_wknd.hpp57276: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/yes_no.hpp90670: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/begin_end_fwd.hpp63214: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/distance_fwd.hpp367029: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/is_sequence.hpp63249: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/iterator_range.hpp372300: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/iterator_tags.hpp383261: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/next_prior.hpp297296: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/numeric_cast.hpp308155: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/sequence_tag.hpp90900: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/flat/functors.hpp412712: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/precise/io.hpp410379: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/precise/ops.hpp410377: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_void.hpp57173: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/utility/result_of.hpp129237: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_incomplete.json: -------------------------------------------------------------------------------- 1 | ["x" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_just_comma.json: -------------------------------------------------------------------------------- 1 | [,] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_just_minus.json: -------------------------------------------------------------------------------- 1 | [-] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_star_inside.json: -------------------------------------------------------------------------------- 1 | [*] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_unclosed.json: -------------------------------------------------------------------------------- 1 | ["" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_incomplete_null.json: -------------------------------------------------------------------------------- 1 | [nul] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_incomplete_true.json: -------------------------------------------------------------------------------- 1 | [tru] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_++.json: -------------------------------------------------------------------------------- 1 | [++1234] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_+Inf.json: -------------------------------------------------------------------------------- 1 | [+Inf] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_-1.0..json: -------------------------------------------------------------------------------- 1 | [-1.0.] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_-NaN.json: -------------------------------------------------------------------------------- 1 | [-NaN] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_.2e-3.json: -------------------------------------------------------------------------------- 1 | [.2e-3] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_0.1.2.json: -------------------------------------------------------------------------------- 1 | [0.1.2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_0.3e+.json: -------------------------------------------------------------------------------- 1 | [0.3e+] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_0.3e.json: -------------------------------------------------------------------------------- 1 | [0.3e] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_0.e1.json: -------------------------------------------------------------------------------- 1 | [0.e1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_1.0e+.json: -------------------------------------------------------------------------------- 1 | [1.0e+] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_1.0e-.json: -------------------------------------------------------------------------------- 1 | [1.0e-] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_1.0e.json: -------------------------------------------------------------------------------- 1 | [1.0e] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_1eE2.json: -------------------------------------------------------------------------------- 1 | [1eE2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_2.e+3.json: -------------------------------------------------------------------------------- 1 | [2.e+3] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_2.e-3.json: -------------------------------------------------------------------------------- 1 | [2.e-3] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_2.e3.json: -------------------------------------------------------------------------------- 1 | [2.e3] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_9.e+.json: -------------------------------------------------------------------------------- 1 | [9.e+] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_emoji.json: -------------------------------------------------------------------------------- 1 | {🇨🇭} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_no-colon.json: -------------------------------------------------------------------------------- 1 | {"a" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_end_array.json: -------------------------------------------------------------------------------- 1 | ] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_false.json: -------------------------------------------------------------------------------- 1 | [false] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_null.json: -------------------------------------------------------------------------------- 1 | [null] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_0e+1.json: -------------------------------------------------------------------------------- 1 | [0e+1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_utf8.json: -------------------------------------------------------------------------------- 1 | ["€𝄞"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail2.json: -------------------------------------------------------------------------------- 1 | ["Unclosed array" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail24.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail4.json: -------------------------------------------------------------------------------- 1 | ["extra comma",] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail8.json: -------------------------------------------------------------------------------- 1 | ["Extra close"]] -------------------------------------------------------------------------------- /libraries/boost/include/boost/intrusive/detail/mpl.hpp15895: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/intrusive/pack_options.hpp51740: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/intrusive/pointer_rebind.hpp15904: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/intrusive/pointer_traits.hpp15901: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/adaptive_merge.hpp52105: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/adaptive_sort.hpp53427: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/detail/merge.hpp52119: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/detail/pdqsort.hpp53532: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/destruct_n.hpp52131: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/fwd_macros.hpp16000: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/meta_utils.hpp15725: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/type_traits.hpp15715: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/O1_size_impl.hpp314093: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/adl_barrier.hpp56635: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/begin_end_impl.hpp74543: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/is_msvc_eti_arg.hpp90910: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/largest_int.hpp344657: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/msvc_eti_base.hpp308273: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/type_wrapper.hpp90669: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/empty_base.hpp56632: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/sequence_tag_fwd.hpp74544: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/detectors.hpp410378: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/functional.hpp410370: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/rvalue_t.hpp410343: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/stdtuple.hpp410341: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/flat/tuple_size.hpp412711: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/precise/functors.hpp410369: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/precise/tuple_size.hpp410344: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/add_const.hpp129215: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/conditional.hpp129931: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/declval.hpp129928: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_array.hpp57174: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_base_of.hpp297190: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_class.hpp57232: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_complete.hpp56992: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_const.hpp63211: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_empty.hpp56878: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_function.hpp56994: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_pointer.hpp129284: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_reference.hpp56995: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_same.hpp117833: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/remove_const.hpp63225: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/remove_cv.hpp57210: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query1.jsonpath: -------------------------------------------------------------------------------- 1 | $['store']['book'] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query3.jsonpath: -------------------------------------------------------------------------------- 1 | $..['bicycle']..price -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query5.jsonpath: -------------------------------------------------------------------------------- 1 | $..book[1:4:2].author -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_double_comma.json: -------------------------------------------------------------------------------- 1 | [1,,2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_extra_close.json: -------------------------------------------------------------------------------- 1 | ["x"]] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["",] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_incomplete_false.json: -------------------------------------------------------------------------------- 1 | [fals] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_0_capital_E+.json: -------------------------------------------------------------------------------- 1 | [0E+] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_0_capital_E.json: -------------------------------------------------------------------------------- 1 | [0E] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_1_000.json: -------------------------------------------------------------------------------- 1 | [1 000.0] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_expression.json: -------------------------------------------------------------------------------- 1 | [1+2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_hex_1_digit.json: -------------------------------------------------------------------------------- 1 | [0x1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_hex_2_digits.json: -------------------------------------------------------------------------------- 1 | [0x42] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_infinity.json: -------------------------------------------------------------------------------- 1 | [Infinity] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_invalid+-.json: -------------------------------------------------------------------------------- 1 | [0e+-1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_minus_space_1.json: -------------------------------------------------------------------------------- 1 | [- 1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_with_alpha.json: -------------------------------------------------------------------------------- 1 | [1.2a-3] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_missing_key.json: -------------------------------------------------------------------------------- 1 | {:"b"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_missing_value.json: -------------------------------------------------------------------------------- 1 | {"a": -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_backslash_00.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_escape_x.json: -------------------------------------------------------------------------------- 1 | ["\x00"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_unescaped_tab.json: -------------------------------------------------------------------------------- 1 | [" "] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_object.json: -------------------------------------------------------------------------------- 1 | { -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_single_star.json: -------------------------------------------------------------------------------- 1 | * -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_empty-string.json: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_after_space.json: -------------------------------------------------------------------------------- 1 | [ 4] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_int_with_exp.json: -------------------------------------------------------------------------------- 1 | [20e1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_minus_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_negative_int.json: -------------------------------------------------------------------------------- 1 | [-123] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_negative_one.json: -------------------------------------------------------------------------------- 1 | [-1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_negative_zero.json: -------------------------------------------------------------------------------- 1 | [-0] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_real_neg_exp.json: -------------------------------------------------------------------------------- 1 | [1e-2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_simple_int.json: -------------------------------------------------------------------------------- 1 | [123] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_basic.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_empty_key.json: -------------------------------------------------------------------------------- 1 | {"":0} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_simple.json: -------------------------------------------------------------------------------- 1 | {"a":[]} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_in_array.json: -------------------------------------------------------------------------------- 1 | ["asd"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicode.json: -------------------------------------------------------------------------------- 1 | ["\uA66D"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicode_2.json: -------------------------------------------------------------------------------- 1 | ["⍂㈴⍂"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_lonely_int.json: -------------------------------------------------------------------------------- 1 | 42 -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_lonely_null.json: -------------------------------------------------------------------------------- 1 | null -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_lonely_true.json: -------------------------------------------------------------------------------- 1 | true -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_string_empty.json: -------------------------------------------------------------------------------- 1 | "" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail19.json: -------------------------------------------------------------------------------- 1 | {"Missing colon" null} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail23.json: -------------------------------------------------------------------------------- 1 | ["Bad value", truth] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail27.json: -------------------------------------------------------------------------------- 1 | ["line 2 | break"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail28.json: -------------------------------------------------------------------------------- 1 | ["line\ 2 | break"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail9.json: -------------------------------------------------------------------------------- 1 | {"Extra comma": true,} -------------------------------------------------------------------------------- /libraries/boost/include/boost/core/addressof.hpp314015: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/intrusive/detail/algorithm.hpp52078: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/detail/basic_op.hpp52120: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/detail/heap_sort.hpp52189: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/detail/is_sorted.hpp52191: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/detail/merge_sort.hpp52183: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/iterator_traits.hpp51789: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/meta_utils_core.hpp15727: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/pointer_element.hpp15905: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/reverse_iterator.hpp52109: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/to_raw_pointer.hpp51819: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/utility_core.hpp15977: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/nested_type_wknd.hpp63251: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/numeric_cast_utils.hpp308254: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/and.hpp68792: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/or.hpp123422: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/template_arity_fwd.hpp57588: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/add_reference.hpp57241: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_convertible.hpp56879: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/remove_reference.hpp56993: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/type_identity.hpp129932: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query4.jsonpath: -------------------------------------------------------------------------------- 1 | $..bicycle[?(@.price>=97)] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query6.jsonpath: -------------------------------------------------------------------------------- 1 | $..book[1:4:2,0].author -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query7.jsonpath: -------------------------------------------------------------------------------- 1 | $..book[(@.length - 2)] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_comma_after_close.json: -------------------------------------------------------------------------------- 1 | [""], -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_comma_and_number.json: -------------------------------------------------------------------------------- 1 | [,1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_missing_value.json: -------------------------------------------------------------------------------- 1 | [ , ""] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_number_and_comma.json: -------------------------------------------------------------------------------- 1 | [1,] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_multidigit_number_then_00.json: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_starting_with_dot.json: -------------------------------------------------------------------------------- 1 | [.123] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_with_leading_zero.json: -------------------------------------------------------------------------------- 1 | [012] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_bad_value.json: -------------------------------------------------------------------------------- 1 | ["x", truth] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_double_colon.json: -------------------------------------------------------------------------------- 1 | {"x"::"b"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_missing_colon.json: -------------------------------------------------------------------------------- 1 | {"a" b} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_non_string_key.json: -------------------------------------------------------------------------------- 1 | {1:1} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_single_quote.json: -------------------------------------------------------------------------------- 1 | {'a':0} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_trailing_comma.json: -------------------------------------------------------------------------------- 1 | {"id":0,} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_unquoted_key.json: -------------------------------------------------------------------------------- 1 | {a: "b"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_escaped_emoji.json: -------------------------------------------------------------------------------- 1 | ["\🌀"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_incomplete_escape.json: -------------------------------------------------------------------------------- 1 | ["\"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_single_doublequote.json: -------------------------------------------------------------------------------- 1 | " -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_UTF8_BOM_no_data.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_angle_bracket_..json: -------------------------------------------------------------------------------- 1 | <.> -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_double_array.json: -------------------------------------------------------------------------------- 1 | [][] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_lone-open-bracket.json: -------------------------------------------------------------------------------- 1 | [ -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_array_comma.json: -------------------------------------------------------------------------------- 1 | [, -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_object_comma.json: -------------------------------------------------------------------------------- 1 | {, -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_unclosed_array.json: -------------------------------------------------------------------------------- 1 | [1 -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_unicode-identifier.json: -------------------------------------------------------------------------------- 1 | å -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_arraysWithSpaces.json: -------------------------------------------------------------------------------- 1 | [[] ] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_ending_with_newline.json: -------------------------------------------------------------------------------- 1 | ["a"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_with_leading_space.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_with_trailing_space.json: -------------------------------------------------------------------------------- 1 | [2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_real_capital_e.json: -------------------------------------------------------------------------------- 1 | [1E22] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_real_exponent.json: -------------------------------------------------------------------------------- 1 | [123e45] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_real_pos_exponent.json: -------------------------------------------------------------------------------- 1 | [1e+2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_simple_real.json: -------------------------------------------------------------------------------- 1 | [123.456789] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_double_escape_a.json: -------------------------------------------------------------------------------- 1 | ["\\a"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_double_escape_n.json: -------------------------------------------------------------------------------- 1 | ["\\n"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_null_escape.json: -------------------------------------------------------------------------------- 1 | ["\u0000"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_simple_ascii.json: -------------------------------------------------------------------------------- 1 | ["asd "] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_u+2028_line_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_u+2029_par_sep.json: -------------------------------------------------------------------------------- 1 | ["
"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_lonely_false.json: -------------------------------------------------------------------------------- 1 | false -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_lonely_string.json: -------------------------------------------------------------------------------- 1 | "asd" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_true_in_array.json: -------------------------------------------------------------------------------- 1 | [true] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_whitespace_array.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail20.json: -------------------------------------------------------------------------------- 1 | {"Double colon":: null} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail5.json: -------------------------------------------------------------------------------- 1 | ["double extra comma",,] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail6.json: -------------------------------------------------------------------------------- 1 | [ , "<-- missing value"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail7.json: -------------------------------------------------------------------------------- 1 | ["Comma after the close"], -------------------------------------------------------------------------------- /libraries/boost/include/boost/intrusive/detail/reverse_iterator.hpp51830: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/detail/insertion_sort.hpp52181: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/detail/set_difference.hpp52368: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/unique_ptr_meta_utils.hpp53038: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/make_unique.hpp53034: -------------------------------------------------------------------------------- 1 | std 2 | boost 3 | boost 4 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/apply.hpp333874: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/bind.hpp325026: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/inherit.hpp383331: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/quote.hpp328222: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/add_rvalue_reference.hpp129929: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_base_and_derived.hpp297191: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_lvalue_reference.hpp56996: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_rvalue_reference.hpp56997: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /tools/jsoncons/examples/output/xxx.txt: -------------------------------------------------------------------------------- 1 | [ 2 | "\u007F\u07FF\u0800" 3 | ] 4 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query2.jsonpath: -------------------------------------------------------------------------------- 1 | $..['bicycle'][*].price 2 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query9.jsonpath: -------------------------------------------------------------------------------- 1 | $..book[*]['author','title'] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_neg_int_huge_exp.json: -------------------------------------------------------------------------------- 1 | [-1e+9999] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_structure_UTF-8_BOM_empty_object.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_1_true_without_comma.json: -------------------------------------------------------------------------------- 1 | [1 true] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_colon_instead_of_comma.json: -------------------------------------------------------------------------------- 1 | ["": 1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_double_extra_comma.json: -------------------------------------------------------------------------------- 1 | ["x",,] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_incomplete_invalid_value.json: -------------------------------------------------------------------------------- 1 | [x -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_inner_array_no_comma.json: -------------------------------------------------------------------------------- 1 | [3[4]] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_unclosed_trailing_comma.json: -------------------------------------------------------------------------------- 1 | [1, -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_minus_infinity.json: -------------------------------------------------------------------------------- 1 | [-Infinity] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_neg_with_garbage_at_end.json: -------------------------------------------------------------------------------- 1 | [-1x] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_real_garbage_after_e.json: -------------------------------------------------------------------------------- 1 | [1ea] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_bracket_key.json: -------------------------------------------------------------------------------- 1 | {[: "x"} 2 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_garbage_at_end.json: -------------------------------------------------------------------------------- 1 | {"a":"a" 123} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_missing_semicolon.json: -------------------------------------------------------------------------------- 1 | {"a" "b"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_unterminated-value.json: -------------------------------------------------------------------------------- 1 | {"a":"a -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_escaped_backslash_bad.json: -------------------------------------------------------------------------------- 1 | ["\\\"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_escaped_ctrl_char_tab.json: -------------------------------------------------------------------------------- 1 | ["\ "] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_invalid_backslash_esc.json: -------------------------------------------------------------------------------- 1 | ["\a"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_single_quote.json: -------------------------------------------------------------------------------- 1 | ['single quote'] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_start_escape_unclosed.json: -------------------------------------------------------------------------------- 1 | ["\ -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_unescaped_crtl_char.json: -------------------------------------------------------------------------------- 1 | ["aa"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_unicode_CapitalU.json: -------------------------------------------------------------------------------- 1 | "\UA66D" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | ""x -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_U+2060_word_joined.json: -------------------------------------------------------------------------------- 1 | [⁠] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_capitalized_True.json: -------------------------------------------------------------------------------- 1 | [True] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_close_unopened_array.json: -------------------------------------------------------------------------------- 1 | 1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_array_apostrophe.json: -------------------------------------------------------------------------------- 1 | [' -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_array_open_object.json: -------------------------------------------------------------------------------- 1 | [{ -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_array_open_string.json: -------------------------------------------------------------------------------- 1 | ["a -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_array_string.json: -------------------------------------------------------------------------------- 1 | ["a" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_object_close_array.json: -------------------------------------------------------------------------------- 1 | {] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_object_open_array.json: -------------------------------------------------------------------------------- 1 | {[ -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_open.json: -------------------------------------------------------------------------------- 1 | ["\{["\{["\{["\{ -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_trailing_#.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}#{} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_whitespace_formfeed.json: -------------------------------------------------------------------------------- 1 | [ ] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_with_1_and_newline.json: -------------------------------------------------------------------------------- 1 | [1 2 | ] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_real_capital_e_neg_exp.json: -------------------------------------------------------------------------------- 1 | [1E-2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_real_capital_e_pos_exp.json: -------------------------------------------------------------------------------- 1 | [1E+2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object.json: -------------------------------------------------------------------------------- 1 | {"asd":"sdf", "dfg":"fgh"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_backslash_doublequotes.json: -------------------------------------------------------------------------------- 1 | ["\""] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_comments.json: -------------------------------------------------------------------------------- 1 | ["a/*b*/c/*d//e"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_one-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u002c"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_three-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u0821"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_two-byte-utf-8.json: -------------------------------------------------------------------------------- 1 | ["\u0123"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unescaped_char_delete.json: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_with_del_character.json: -------------------------------------------------------------------------------- 1 | ["aa"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_lonely_negative_real.json: -------------------------------------------------------------------------------- 1 | -0.1 -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail11.json: -------------------------------------------------------------------------------- 1 | {"Illegal expression": 1 + 2} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail12.json: -------------------------------------------------------------------------------- 1 | {"Illegal invocation": alert()} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail14.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot be hex": 0x14} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail21.json: -------------------------------------------------------------------------------- 1 | {"Comma instead of colon", null} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail25.json: -------------------------------------------------------------------------------- 1 | [" tab character in string "] -------------------------------------------------------------------------------- /libraries/boost/include/boost/intrusive/detail/iterator.hpp51772: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/algo/detail/adaptive_sort_merge.hpp52107: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/iterator_to_raw_pointer.hpp51818: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/apply_fwd.hpp319709: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/apply_wrap.hpp308252: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/bind_fwd.hpp320025: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/fold_impl.hpp339282: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/full_lambda.hpp328289: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/cast_to_layout_compatible.hpp410352: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/is_member_function_pointer.hpp129285: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query2.json: -------------------------------------------------------------------------------- 1 | [ 2 | 97.5, 3 | 97.5 4 | ] 5 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_double_huge_neg_exp.json: -------------------------------------------------------------------------------- 1 | [123.456e-789] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_pos_double_huge_exp.json: -------------------------------------------------------------------------------- 1 | [1.5e+9999] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_real_neg_overflow.json: -------------------------------------------------------------------------------- 1 | [-123123e100000] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_real_pos_overflow.json: -------------------------------------------------------------------------------- 1 | [123123e100000] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_real_underflow.json: -------------------------------------------------------------------------------- 1 | [123e-10000000] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_invalid_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\ud800abc"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_lone_second_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\uDFAA"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_items_separated_by_semicolon.json: -------------------------------------------------------------------------------- 1 | [1:2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_number_and_several_commas.json: -------------------------------------------------------------------------------- 1 | [1,,] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_unclosed_with_object_inside.json: -------------------------------------------------------------------------------- 1 | [{} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_U+FF11_fullwidth_digit_one.json: -------------------------------------------------------------------------------- 1 | [1] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_neg_int_starting_with_zero.json: -------------------------------------------------------------------------------- 1 | [-012] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_neg_real_without_int_part.json: -------------------------------------------------------------------------------- 1 | [-.123] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_real_without_fractional_part.json: -------------------------------------------------------------------------------- 1 | [1.] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_comma_instead_of_colon.json: -------------------------------------------------------------------------------- 1 | {"x", null} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_trailing_comment.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/**/ -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}# -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_accentuated_char_no_quotes.json: -------------------------------------------------------------------------------- 1 | [é] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_invalid_unicode_escape.json: -------------------------------------------------------------------------------- 1 | ["\uqqqq"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_no_quotes_with_bad_escape.json: -------------------------------------------------------------------------------- 1 | [\n] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_single_string_no_double_quotes.json: -------------------------------------------------------------------------------- 1 | abc -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_unescaped_newline.json: -------------------------------------------------------------------------------- 1 | ["new 2 | line"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_angle_bracket_null.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_array_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | [1]x -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_ascii-unicode-identifier.json: -------------------------------------------------------------------------------- 1 | aå -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_null-byte-outside-string.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_number_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | 2@ -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_object_unclosed_no_value.json: -------------------------------------------------------------------------------- 1 | {"": -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_object_open_string.json: -------------------------------------------------------------------------------- 1 | {"a -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_unclosed_object.json: -------------------------------------------------------------------------------- 1 | {"asd":"asd" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_heterogeneous.json: -------------------------------------------------------------------------------- 1 | [null, 1, "1", {}] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_duplicated_key.json: -------------------------------------------------------------------------------- 1 | {"a":"b","a":"c"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_with_newlines.json: -------------------------------------------------------------------------------- 1 | { 2 | "a": "b" 3 | } -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_escaped_noncharacter.json: -------------------------------------------------------------------------------- 1 | ["\uFFFF"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_nbsp_uescaped.json: -------------------------------------------------------------------------------- 1 | ["new\u00A0line"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_nonCharacterInUTF-8_U+1FFFF.json: -------------------------------------------------------------------------------- 1 | ["𛿿"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_nonCharacterInUTF-8_U+FFFF.json: -------------------------------------------------------------------------------- 1 | ["￿"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_uescaped_newline.json: -------------------------------------------------------------------------------- 1 | ["new\u000Aline"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicodeEscapedBackslash.json: -------------------------------------------------------------------------------- 1 | ["\u005C"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicode_U+FDD0_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uFDD0"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicode_U+FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uFFFE"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_structure_trailing_newline.json: -------------------------------------------------------------------------------- 1 | ["a"] 2 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail15.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \x15"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail17.json: -------------------------------------------------------------------------------- 1 | ["Illegal backslash escape: \017"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail22.json: -------------------------------------------------------------------------------- 1 | ["Colon instead of comma": false] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail3.json: -------------------------------------------------------------------------------- 1 | {unquoted_key: "keys must be quoted"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/persons.json: -------------------------------------------------------------------------------- 1 | { 2 | "persons" : ["John","David"] 3 | } 4 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/advance_backward.hpp361548: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/advance_forward.hpp361518: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/iter_fold_impl.hpp367060: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/less.hpp350618: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/minus.hpp404273: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/plus.hpp344690: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/template_arity.hpp328252: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/precise/core.hpp410337: -------------------------------------------------------------------------------- 1 | boost 2 | for_each_field 3 | 4 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/detail/is_function_ptr_helper.hpp56998: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/detail/is_mem_fun_pointer_impl.hpp129293: -------------------------------------------------------------------------------- 1 | boost 2 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/nop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func nop)) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/module-empty.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module) 3 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_too_big_pos_int.json: -------------------------------------------------------------------------------- 1 | [100000000000000000000] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_object_key_lone_2nd_surrogate.json: -------------------------------------------------------------------------------- 1 | {"\uDFAA":0} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_incomplete_surrogate_pair.json: -------------------------------------------------------------------------------- 1 | ["\uDd1ea"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_invalid_lonely_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\ud800"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_newlines_unclosed.json: -------------------------------------------------------------------------------- 1 | ["a", 2 | 4 3 | ,1, -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_spaces_vertical_tab_formfeed.json: -------------------------------------------------------------------------------- 1 | [" a"\f] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_unclosed_with_new_lines.json: -------------------------------------------------------------------------------- 1 | [1, 2 | 1 3 | ,1 -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_invalid-negative-real.json: -------------------------------------------------------------------------------- 1 | [-123.123foo] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_minus_sign_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | [-foo] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_key_with_single_quotes.json: -------------------------------------------------------------------------------- 1 | {key: 'value'} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_several_trailing_commas.json: -------------------------------------------------------------------------------- 1 | {"id":0,,,,,} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_trailing_comment_open.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/**// -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_trailing_comment_slash_open.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}// -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_two_commas_in_a_row.json: -------------------------------------------------------------------------------- 1 | {"a":"b",,"c":"d"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_1_surrogate_then_escape.json: -------------------------------------------------------------------------------- 1 | ["\uD800\"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_1_surrogate_then_escape_u.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_incomplete_escaped_character.json: -------------------------------------------------------------------------------- 1 | ["\u00A"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_incomplete_surrogate.json: -------------------------------------------------------------------------------- 1 | ["\uD834\uDd"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_array_with_extra_array_close.json: -------------------------------------------------------------------------------- 1 | [1]] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_array_with_unclosed_string.json: -------------------------------------------------------------------------------- 1 | ["asd] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_uescaped_LF_before_string.json: -------------------------------------------------------------------------------- 1 | [\u000A""] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_whitespace_U+2060_word_joiner.json: -------------------------------------------------------------------------------- 1 | [⁠] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_array_with_several_null.json: -------------------------------------------------------------------------------- 1 | [1,null,null,null,2] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_real_fraction_exponent.json: -------------------------------------------------------------------------------- 1 | [123.456e78] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_allowed_escapes.json: -------------------------------------------------------------------------------- 1 | ["\"\\\/\b\f\n\r\t"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_escaped_control_character.json: -------------------------------------------------------------------------------- 1 | ["\u0012"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_in_array_with_leading_space.json: -------------------------------------------------------------------------------- 1 | [ "asd"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_nonCharacterInUTF-8_U+10FFFF.json: -------------------------------------------------------------------------------- 1 | ["􏿿"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_uEscape.json: -------------------------------------------------------------------------------- 1 | ["\u0061\u30af\u30EA\u30b9"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicode_escaped_double_quote.json: -------------------------------------------------------------------------------- 1 | ["\u0022"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail26.json: -------------------------------------------------------------------------------- 1 | ["tab\ character\ in\ string\ "] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail32.json: -------------------------------------------------------------------------------- 1 | {"Comma instead if closing brace": true, -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/detail/placement_new.hpp52182: -------------------------------------------------------------------------------- 1 | boost_move_new_t 2 | 3 | 4 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/equal_to.hpp308329: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/type_traits/integral_constant.hpp56805: -------------------------------------------------------------------------------- 1 | mpl_ 2 | boost 3 | boost 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/gen-spec-empty-prefix.js: -------------------------------------------------------------------------------- 1 | // A deliberately empty file for testing. 2 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/func-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func $foo)) 3 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_1st_surrogate_but_2nd_missing.json: -------------------------------------------------------------------------------- 1 | ["\uDADA"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_inverted_surrogates_U+1D11E.json: -------------------------------------------------------------------------------- 1 | ["\uDd1e\uD834"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_with_alpha_char.json: -------------------------------------------------------------------------------- 1 | [1.8011670033376514H-308] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_repeated_null_null.json: -------------------------------------------------------------------------------- 1 | {null:null,null:null} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_with_single_string.json: -------------------------------------------------------------------------------- 1 | { "foo" : "bar", "a" } -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_1_surrogate_then_escape_u1.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u1"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_1_surrogate_then_escape_u1x.json: -------------------------------------------------------------------------------- 1 | ["\uD800\u1x"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_leading_uescaped_thinspace.json: -------------------------------------------------------------------------------- 1 | [\u0020"asd"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_object_followed_by_closing_object.json: -------------------------------------------------------------------------------- 1 | {}} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_object_with_comment.json: -------------------------------------------------------------------------------- 1 | {"a":/*comment*/"b"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_open_object_string_with_apostrophes.json: -------------------------------------------------------------------------------- 1 | {'a' -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_unclosed_array_partial_null.json: -------------------------------------------------------------------------------- 1 | [ false, nul -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_duplicated_key_and_value.json: -------------------------------------------------------------------------------- 1 | {"a":"b","a":"b"} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_escaped_null_in_key.json: -------------------------------------------------------------------------------- 1 | {"foo\u0000bar": 42} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_accepted_surrogate_pair.json: -------------------------------------------------------------------------------- 1 | ["\uD801\udc37"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_backslash_and_u_escaped_zero.json: -------------------------------------------------------------------------------- 1 | ["\\u0000"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_last_surrogates_1_and_2.json: -------------------------------------------------------------------------------- 1 | ["\uDBFF\uDFFF"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicode_U+10FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uDBFF\uDFFE"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicode_U+1FFFE_nonchar.json: -------------------------------------------------------------------------------- 1 | ["\uD83F\uDFFE"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicode_U+200B_ZERO_WIDTH_SPACE.json: -------------------------------------------------------------------------------- 1 | ["\u200B"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_unicode_U+2064_invisible_plus.json: -------------------------------------------------------------------------------- 1 | ["\u2064"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail13.json: -------------------------------------------------------------------------------- 1 | {"Numbers cannot have leading zeroes": 013} -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/return-void.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func return)) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/local-empty.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (local))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/local.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (local i32))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/type-empty.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (type (func))) 3 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query3.json: -------------------------------------------------------------------------------- 1 | [ 2 | 97.5, 3 | 125.99, 4 | 97.5 5 | ] 6 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_too_big_neg_int.json: -------------------------------------------------------------------------------- 1 | [-123123123123123123123123123123] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_1st_valid_surrogate_2nd_invalid.json: -------------------------------------------------------------------------------- 1 | ["\uD888\u1234"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_trailing_comment_slash_open_incomplete.json: -------------------------------------------------------------------------------- 1 | {"a":"b"}/ -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_comma_instead_of_closing_brace.json: -------------------------------------------------------------------------------- 1 | {"x": true, -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_object_with_trailing_garbage.json: -------------------------------------------------------------------------------- 1 | {"a": true} "x" -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_unclosed_array_unfinished_false.json: -------------------------------------------------------------------------------- 1 | [ true, fals -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_unclosed_array_unfinished_true.json: -------------------------------------------------------------------------------- 1 | [ false, tru -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail18.json: -------------------------------------------------------------------------------- 1 | [[[[[[[[[[[[[[[[[[[["Too deep"]]]]]]]]]]]]]]]]]]]] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/pass2.json: -------------------------------------------------------------------------------- 1 | [[[[[[[[[[[[[[[[[[["Not too deep"]]]]]]]]]]]]]]]]]]] -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/unreachable.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func unreachable)) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/param-type-1.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (param i32))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/result-empty.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (result))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/memory-init-size.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (memory 1)) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/wasm2c/examples/fac/fac.wasm: -------------------------------------------------------------------------------- 1 | asm`fac 2 |  AFA Akl -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_incomplete_surrogate_and_escape_valid.json: -------------------------------------------------------------------------------- 1 | ["\uD800\n"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_incomplete_surrogates_escape_valid.json: -------------------------------------------------------------------------------- 1 | ["\uD800\uD800\n"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_non_string_key_but_huge_number_instead.json: -------------------------------------------------------------------------------- 1 | {9999E9999:1} -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_incomplete_surrogate_escape_invalid.json: -------------------------------------------------------------------------------- 1 | ["\uD800\uD800\x"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_extreme_numbers.json: -------------------------------------------------------------------------------- 1 | { "min": -1.0e+28, "max": 1.0e+28 } -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_1_2_3_bytes_UTF-8_sequences.json: -------------------------------------------------------------------------------- 1 | ["\u0060\u012a\u12AB"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_accepted_surrogate_pairs.json: -------------------------------------------------------------------------------- 1 | ["\ud83d\ude39\ud83d\udc8d"] -------------------------------------------------------------------------------- /tools/external/wabt/fuzz-in/wast/basic.txt: -------------------------------------------------------------------------------- 1 | (module 2 | (func (result i32) 3 | (return (i32.const 42)))) 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/interp/memory-empty-segment.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp 2 | (module (memory (data ""))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/param-binding.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (param $foo i32))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/param-type-2.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (param i32 f32))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/memory-init-max-size.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (memory 1 2)) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/start.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (start 0) 4 | (func)) 5 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_string_surrogates_U+1D11E_MUSICAL_SYMBOL_G_CLEF.json: -------------------------------------------------------------------------------- 1 | ["\uD834\uDd1e"] -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail1.json: -------------------------------------------------------------------------------- 1 | "A JSON payload should be an object or array, not a string." -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/fail10.json: -------------------------------------------------------------------------------- 1 | {"Extra value after close": true} "misplaced quoted value" -------------------------------------------------------------------------------- /libraries/boost/include/boost/intrusive/detail/has_member_function_callable_with.hpp15999: -------------------------------------------------------------------------------- 1 | boost_intrusive_hmfcw 2 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/move/adl_move_swap.hpp16395: -------------------------------------------------------------------------------- 1 | boost_move_adl_swap 2 | boost_move_adl_swap 3 | boost 4 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/offset_based_getter.hpp410361: -------------------------------------------------------------------------------- 1 | boost 2 | get 3 | offset 4 | get_pointer 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/result.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (result i32) i32.const 0)) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/type-empty-param.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (type (func (param)))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/type-no-param.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (type (func (result i32)))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/local-multi.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (local i32) (local $n i64))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/param-multi.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (param i32) (param $n f64))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/type.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (type (func (param i32) (result i32)))) 3 | -------------------------------------------------------------------------------- /libraries/boost/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/include/boost DESTINATION ${BASE_BINARY_DIR}/include) 2 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/import-func-no-param.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (import "foo" "bar" (func))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/start-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (start $foo) 4 | (func $foo)) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/string-hex.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func) (export "foo\de\ad\ca\bb" (func 0))) 3 | -------------------------------------------------------------------------------- /tools/jsoncons/examples/input/multiple-json-objects.json: -------------------------------------------------------------------------------- 1 | {"a":1,"b":2,"c":3} 2 | {"a":4,"b":5,"c":6} 3 | {"a":7,"b":8,"c":9} 4 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_very_big_negative_int.json: -------------------------------------------------------------------------------- 1 | [-237462374673276894279832749832423479823246327846] -------------------------------------------------------------------------------- /libraries/eosiolib/stdlib.hpp: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | #include 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/br.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | block 5 | br 0 6 | end)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/line-comment.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;; here is a comment 3 | (module) 4 | ;; here is another 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/import-memory.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (import "foo" "2" (memory 0 2))) 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/memory-segment-1.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (memory (data "hello, world!"))) 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/typecheck/return-drop-value.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | nop 5 | return)) 6 | -------------------------------------------------------------------------------- /examples/send_inline/ricardian/send_inline.contracts.md: -------------------------------------------------------------------------------- 1 |

hi

2 | 3 | Stub for hi action's ricardian contract -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/for_each_field_impl.hpp410342: -------------------------------------------------------------------------------- 1 | boost 2 | for_each_field_impl 3 | for_each_field_impl_apply 4 | -------------------------------------------------------------------------------- /tools/external/wabt/.style.yapf: -------------------------------------------------------------------------------- 1 | [style] 2 | split_before_named_assigns = False 3 | based_on_style = chromium 4 | column_limit = 79 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/basic.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | i32.const 42 5 | return)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/br-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func 3 | block $foo 4 | br $foo 5 | end)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/call.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (param i32) 4 | i32.const 1 5 | call 0)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/export-func.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (nop)) 4 | (export "nop" (func 0))) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/import-table.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (import "foo" "2" (table 0 10 anyfunc))) 4 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/build/cmake/.gitignore: -------------------------------------------------------------------------------- 1 | /CMakeCache.txt 2 | /CMakeFiles 3 | /Makefile 4 | /cmake_install.cmake 5 | /jsoncons_tests 6 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/sequence_tuple.hpp410340: -------------------------------------------------------------------------------- 1 | boost 2 | get_impl 3 | get 4 | 5 | get_impl 6 | get 7 | get_impl 8 | get 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/getlocal.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (local i32) 4 | get_local 0 5 | drop)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/setlocal.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func (local i32) 3 | i32.const 0 4 | set_local 0)) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/export-memory.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (memory 1) 4 | (export "mem" (memory 0))) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/memory-shared.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-threads 3 | (module (memory 1 1 shared)) 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/type-multi-param.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (type (func (param i32 f32 f64) (result f32)))) 3 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/nested-comments.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (; foo bar 4 | (; baz 5 | ;) 6 | ;) 7 | ) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/typecheck/return-drop-value-2.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | i32.const 0 5 | return)) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/doc/ref/json/as.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/doc/ref/json/as.md -------------------------------------------------------------------------------- /libraries/boost/include/boost/mpl/aux_/preprocessed/gcc/placeholders.hpp319930: -------------------------------------------------------------------------------- 1 | boost 2 | boost 3 | boost 4 | boost 5 | boost 6 | boost 7 | boost 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/br-loop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | loop $exit 5 | br $exit 6 | end)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/getlocal-param.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (param i32) 4 | get_local 0 5 | drop)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/loop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | loop 5 | nop 6 | nop 7 | end)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/return.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | i32.const 42 5 | return)) 6 | -------------------------------------------------------------------------------- /tools/ld/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/eosio-ld.cpp.in ${CMAKE_BINARY_DIR}/eosio-ld.cpp) 2 | 3 | add_tool(eosio-ld) 4 | -------------------------------------------------------------------------------- /examples/multi_index_example/ricardian/multi_index_example.contracts.md: -------------------------------------------------------------------------------- 1 |

hi

2 | 3 | Stub for hi action's ricardian contract -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/if.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | i32.const 1 5 | if 6 | nop 7 | end)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/export-table.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (table 0 anyfunc) 4 | (export "my_table" (table 0))) 5 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/output/store.cbor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/output/store.cbor -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/make_flat_tuple_of_references.hpp410363: -------------------------------------------------------------------------------- 1 | boost 2 | tie_as_tuple_with_references 3 | make_flat_tuple_of_references 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/interp/empty.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp 2 | (module 3 | (func (export "f"))) 4 | (;; STDOUT ;;; 5 | f() => 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/call-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func $foo (param f32) 4 | f32.const 0.0 5 | call $foo)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/current-memory.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (memory 1) 4 | (func 5 | current_memory 6 | drop)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/getlocal-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (local $foo i32) 4 | get_local $foo 5 | drop)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/getlocal-param-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (param $n i32) 4 | get_local $n 5 | drop)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/if-then-br.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | i32.const 1 5 | if 6 | br 0 7 | end)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/setlocal-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func 3 | (local $n i32) 4 | i32.const 12 5 | set_local $n)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/setlocal-param.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (param i32) 4 | i32.const 0 5 | set_local 0)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/throw.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-exceptions 3 | (module 4 | (except $e1) 5 | (func throw $e1)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/string-escape.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module (func) (export "tab:\t newline:\n slash:\\ quote:\' double:\"" (func 0))) 3 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query5.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Evelyn Waugh", 3 | "J. R. R. Tolkien", 4 | "Paula Haney", 5 | "Gillian Price" 6 | ] 7 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/Acknowledgement.txt: -------------------------------------------------------------------------------- 1 | These files are from the JSON_checker test suite 2 | 3 | http://www.json.org/JSON_checker/ 4 | -------------------------------------------------------------------------------- /tools/external/wabt/fuzz-in/wasm/stuff.wasm: -------------------------------------------------------------------------------- 1 | asm``}}` foobarpA quux A  2 | C(B  A hello -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/block-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | block $foo 5 | nop 6 | nop 7 | end)) 8 | -------------------------------------------------------------------------------- /tools/init/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/eosio-init.cpp ${CMAKE_BINARY_DIR}/eosio-init.cpp @ONLY) 2 | 3 | add_tool(eosio-init) 4 | -------------------------------------------------------------------------------- /tools/jsoncons/doc/ref/jsonpath/jsonpath.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/doc/ref/jsonpath/jsonpath.md -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_number_double_close_to_zero.json: -------------------------------------------------------------------------------- 1 | [-0.000000000000000000000000000000000000000000000000000000000000000000000000000001] 2 | -------------------------------------------------------------------------------- /tools/abidiff/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/eosio-abidiff.cpp.in ${CMAKE_BINARY_DIR}/eosio-abidiff.cpp) 2 | 3 | add_tool(eosio-abidiff) 4 | -------------------------------------------------------------------------------- /tools/abigen/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/eosio-abigen.cpp.in ${CMAKE_BINARY_DIR}/eosio-abigen.cpp) 2 | 3 | add_tool(eosio-abigen) 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/assert/assertinvalid-binary-module.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wast2json 2 | (assert_invalid (module binary "\00ASM") "bad magic") 3 | (module) 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/brif.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | block $foo 5 | i32.const 1 6 | br_if 0 7 | end)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/getglobal.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (global i32 (i32.const 1)) 4 | (func (result i32) 5 | get_global 0)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/setlocal-param-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (param $n i32) 4 | i32.const 0 5 | set_local $n)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/sig.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (type $t (func (param i32) (result i32))) 4 | (func (type $t) (i32.const 0))) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/export-func-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func $n (result i32) (i32.const 0)) 4 | (export "n" (func $n))) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/import-except.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-exceptions 3 | (module 4 | (import "foo" "1" (except f64 f32))) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/memory-segment-multi-string.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (memory 4 | (data "hi" "there" "how" "are" "you"))) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/debug-import-names.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --debug-names 3 | (module 4 | (import "bar" "foo" (func $foo))) 5 | -------------------------------------------------------------------------------- /tools/jsoncons/doc/ref/line_split_kind.md: -------------------------------------------------------------------------------- 1 | ### jsoncons::line_split_kind 2 | 3 | ```c++ 4 | enum class line_split_kind{same_line,new_line,multi_line}; 5 | ``` 6 | 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/brif-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | block $foo 5 | i32.const 1 6 | br_if $foo 7 | end)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/getlocal-index-after-param.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (param i32) (local i32) 4 | get_local 1 5 | drop)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/grow-memory.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (memory 1) 4 | (func 5 | i32.const 100 6 | grow_memory 7 | drop)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/setglobal.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (global f32 (f32.const 1)) 4 | (func 5 | f32.const 2 6 | set_global 0)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/tee_local.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | (local i32) 5 | i32.const 0 6 | tee_local 0 7 | drop)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/export-func-multi.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (nop)) 4 | (export "a" (func 0)) 5 | (export "b" (func 0))) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/countries.csv: -------------------------------------------------------------------------------- 1 | country_code,name 2 | ABW,ARUBA 3 | ATF,"FRENCH SOUTHERN TERRITORIES, D.R. OF" 4 | VUT,VANUATU 5 | WLF,WALLIS & FUTUNA ISLANDS 6 | -------------------------------------------------------------------------------- /libraries/boost/include/boost/pfr/detail/core14_loophole.hpp410351: -------------------------------------------------------------------------------- 1 | boost 2 | unsafe_declval_like 3 | loophole 4 | tie_as_tuple_loophole_impl 5 | for_each_field_dispatcher 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/getglobal-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (global $g i32 (i32.const 1)) 4 | (func (result i32) 5 | get_global $g)) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/if-then-br-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | i32.const 1 5 | if $exit 6 | br $exit 7 | end)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/import-global-getglobal.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (import "a" "global" (global i32)) 4 | (global i32 (get_global 0))) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/import-memory-shared.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-threads 3 | (module 4 | (import "foo" "2" (memory 0 2 shared))) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/fac.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/fac.wast 3 | (;; STDOUT ;;; 4 | 6/6 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/doc/ref/json_serializing_options.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/doc/ref/json_serializing_options.md -------------------------------------------------------------------------------- /tools/jsoncons/tests/build/cmake/run_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | DIR=$(cd $(dirname ${BASH_SOURCE[0]}) && pwd) 5 | 6 | cd ${DIR}/../.. 7 | ${DIR}/jsoncons_tests 8 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/build/scons/run_tests.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | DIR=$(cd $(dirname ${BASH_SOURCE[0]}) && pwd) 5 | 6 | cd ${DIR}/../.. 7 | ${DIR}/jsoncons_tests 8 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_long_strings.json: -------------------------------------------------------------------------------- 1 | {"x":[{"id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"}], "id": "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"} -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/export-mutable-global.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-mutable-globals 3 | (module (global (export "g") (mut f32) (f32.const 1.5))) 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/setglobal-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (global $g f32 (f32.const 1)) 4 | (func 5 | f32.const 2 6 | set_global $g)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/export-memory-multi.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (memory 1) 4 | (export "mem1" (memory 0)) 5 | (export "mem2" (memory 0))) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/import-mutable-global.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-mutable-globals 3 | (module (import "mod" "field" (global (mut f32)))) 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/i32.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/i32.wast 3 | (;; STDOUT ;;; 4 | 359/359 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/i64.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/i64.wast 3 | (;; STDOUT ;;; 4 | 359/359 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/stack.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/stack.wast 3 | (;; STDOUT ;;; 4 | 3/3 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/y_object_string_unicode.json: -------------------------------------------------------------------------------- 1 | {"title":"\u041f\u043e\u043b\u0442\u043e\u0440\u0430 \u0417\u0435\u043c\u043b\u0435\u043a\u043e\u043f\u0430" } -------------------------------------------------------------------------------- /tools/external/wabt/demo/third_party/split/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/external/wabt/demo/third_party/split/vertical.png -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/assert/assertmalformed.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wast2json 2 | (assert_malformed 3 | (module binary 4 | "\00asm\bc\0a\00\00") 5 | "unknown binary version") 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/no-space.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func $foomore 4 | i32.const 0x0 5 | call $foo) 6 | (func $foo (param i32) nop) 7 | ) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/except.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-exceptions 3 | (module 4 | (except) 5 | (except $e1 i32) 6 | (except $e2 f32 f32 f32)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/export-except.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-exceptions 3 | (module 4 | (except i32 i32) 5 | (export "my_except" (except 0))) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/comments.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/comments.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/forward.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/forward.wast 3 | (;; STDOUT ;;; 4 | 4/4 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/traps.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/traps.wast 3 | (;; STDOUT ;;; 4 | 32/32 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/unwind.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/unwind.wast 3 | (;; STDOUT ;;; 4 | 38/38 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/typecheck/return-value.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | i32.const 1 5 | return 6 | i32.const 2 7 | i32.add)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/br.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/br.wast 3 | (;; STDOUT ;;; 4 | 61/61 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/fac.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/fac.wast 3 | (;; STDOUT ;;; 4 | 6/6 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/if.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/if.wast 3 | (;; STDOUT ;;; 4 | 38/38 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/nop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/nop.wast 3 | (;; STDOUT ;;; 4 | 50/50 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/type.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/type.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/demo/third_party/split/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/external/wabt/demo/third_party/split/horizontal.png -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/expr-br.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | block $exit (result i32) 5 | i32.const 0 6 | br 0 7 | end)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/setlocal-index-after-param.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (param i32) 4 | (local i32) 5 | i32.const 0 6 | set_local 1)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/result-multi.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-multi-value 3 | (module 4 | (func (result i32 i32) 5 | i32.const 0 6 | i32.const 1)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/break-drop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/break-drop.wast 3 | (;; STDOUT ;;; 4 | 3/3 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/int_exprs.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/int_exprs.wast 3 | (;; STDOUT ;;; 4 | 89/89 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/resizing.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/resizing.wast 3 | (;; STDOUT ;;; 4 | 34/34 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/too-many-arguments.txt: -------------------------------------------------------------------------------- 1 | ;;; RUN: %(wat2wasm)s 2 | ;;; ARGS: foo.txt bar.txt 3 | ;;; ERROR: 1 4 | (;; STDERR ;;; 5 | unexpected argument 'bar.txt' 6 | ;;; STDERR ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/align.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/align.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/binary.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/binary.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/block.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/block.wast 3 | (;; STDOUT ;;; 4 | 14/14 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/br_if.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/br_if.wast 3 | (;; STDOUT ;;; 4 | 34/34 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/call.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/call.wast 3 | (;; STDOUT ;;; 4 | 35/35 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/const.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/const.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/forward.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/forward.wast 3 | (;; STDOUT ;;; 4 | 4/4 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/func.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/func.wast 3 | (;; STDOUT ;;; 4 | 73/73 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/i32.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/i32.wast 3 | (;; STDOUT ;;; 4 | 359/359 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/i64.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/i64.wast 3 | (;; STDOUT ;;; 4 | 359/359 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/labels.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/labels.wast 3 | (;; STDOUT ;;; 4 | 25/25 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/loop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/loop.wast 3 | (;; STDOUT ;;; 4 | 42/42 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/memory.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/memory.wast 3 | (;; STDOUT ;;; 4 | 47/47 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/return.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/return.wast 3 | (;; STDOUT ;;; 4 | 57/57 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/select.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/select.wast 3 | (;; STDOUT ;;; 4 | 28/28 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/stack.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/stack.wast 3 | (;; STDOUT ;;; 4 | 3/3 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/switch.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/switch.wast 3 | (;; STDOUT ;;; 4 | 26/26 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/token.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/token.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/traps.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/traps.wast 3 | (;; STDOUT ;;; 4 | 32/32 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/unwind.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/unwind.wast 3 | (;; STDOUT ;;; 4 | 38/38 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/binary/bad-magic.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-gen-wasm-bad 2 | version 3 | (;; STDERR ;;; 4 | 0000004: error: bad magic value 5 | 0000004: error: bad magic value 6 | ;;; STDERR ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/call-name-prefix.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func $foomore 4 | i32.const 0 5 | call $foo) 6 | (func $foo (param i32) 7 | nop)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/callimport-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (import "foo" "bar" (func $bar (param f32))) 4 | (func 5 | f32.const 0 6 | call $bar)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/loop-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | loop 5 | nop 6 | end 7 | loop $inner 8 | nop 9 | end)) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/import-func-type.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (type (func (param i32 i64 f32 f64) (result i32))) 4 | (import "foo" "bar" (func (type 0)))) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/debug-names-after-data.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --debug-names 3 | (module 4 | (memory 1) 5 | (data (i32.const 0) "hi") 6 | (func $foo)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/conversions.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/conversions.wast 3 | (;; STDOUT ;;; 4 | 401/401 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/endianness.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/endianness.wast 3 | (;; STDOUT ;;; 4 | 68/68 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/f32.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-interp-spec 3 | ;;; STDIN_FILE: third_party/testsuite/f32.wast 4 | (;; STDOUT ;;; 5 | 2500/2500 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/f32_bitwise.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/f32_bitwise.wast 3 | (;; STDOUT ;;; 4 | 360/360 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/f64.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-interp-spec 3 | ;;; STDIN_FILE: third_party/testsuite/f64.wast 4 | (;; STDOUT ;;; 5 | 2500/2500 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/f64_bitwise.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/f64_bitwise.wast 3 | (;; STDOUT ;;; 4 | 360/360 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/float_misc.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/float_misc.wast 3 | (;; STDOUT ;;; 4 | 440/440 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/inline-module.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/inline-module.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/memory_trap.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/memory_trap.wast 3 | (;; STDOUT ;;; 4 | 171/171 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/unreachable.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/unreachable.wast 3 | (;; STDOUT ;;; 4 | 59/59 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/address.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/address.wast 3 | (;; STDOUT ;;; 4 | 41/41 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/comments.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/comments.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/globals.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/globals.wast 3 | (;; STDOUT ;;; 4 | 16/16 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/linking.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/linking.wast 3 | (;; STDOUT ;;; 4 | 70/70 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/resizing.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/resizing.wast 3 | (;; STDOUT ;;; 4 | 34/34 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/typecheck.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/typecheck.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/build/cmake/config.cmake: -------------------------------------------------------------------------------- 1 | 2 | # set compiler on some platforms 3 | if (APPLE) 4 | if (NOT CMAKE_CXX_COMPILER) 5 | set (CMAKE_CXX_COMPILER clang++) 6 | endif() 7 | endif() 8 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONPath/query6.json: -------------------------------------------------------------------------------- 1 | [ 2 | "Evelyn Waugh", 3 | "J. R. R. Tolkien", 4 | "Nigel Rees", 5 | "Paula Haney", 6 | "Gillian Price", 7 | "Victor Hugo" 8 | ] 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/if-then-else.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | (i32.const 0) 5 | if 6 | nop 7 | else 8 | nop 9 | end)) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/export-global.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (global i32 (i32.const 0)) 4 | (global (mut f32) (f32.const 0)) 5 | (export "global0" (global 0))) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/left-to-right.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/left-to-right.wast 3 | (;; STDOUT ;;; 4 | 95/95 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/typecheck/if-then-br.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | block 5 | i32.const 0 6 | if 7 | br 0 8 | end 9 | end)) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/break-drop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/break-drop.wast 3 | (;; STDOUT ;;; 4 | 3/3 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/endianness.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/endianness.wast 3 | (;; STDOUT ;;; 4 | 68/68 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/float_misc.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/float_misc.wast 3 | (;; STDOUT ;;; 4 | 440/440 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/get_local.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/get_local.wast 3 | (;; STDOUT ;;; 4 | 10/10 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/int_exprs.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/int_exprs.wast 3 | (;; STDOUT ;;; 4 | 89/89 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/set_local.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/set_local.wast 3 | (;; STDOUT ;;; 4 | 10/10 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/store_retval.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/store_retval.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/tee_local.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/tee_local.wast 3 | (;; STDOUT ;;; 4 | 11/11 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/unreachable.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/unreachable.wast 3 | (;; STDOUT ;;; 4 | 59/59 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/build/cmake/Darwin.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Global Configuration for MacOS platform 3 | # 4 | 5 | # customize compiler flags 6 | ## Add new flags 7 | add_definitions (-std=c++11 -stdlib=libc++) 8 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_number_huge_exp.json: -------------------------------------------------------------------------------- 1 | [0.4e00669999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999969999999006] -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/br-block.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | block $exit1 5 | br 0 6 | end 7 | block $exit2 8 | br $exit2 9 | end)) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/regress/regress-6.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | block (result i32) 5 | f32.const 1 6 | i32.const 1 7 | br 0 8 | end)) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/f32_cmp.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-interp-spec 3 | ;;; STDIN_FILE: third_party/testsuite/f32_cmp.wast 4 | (;; STDOUT ;;; 5 | 2400/2400 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/f64_cmp.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-interp-spec 3 | ;;; STDIN_FILE: third_party/testsuite/f64_cmp.wast 4 | (;; STDOUT ;;; 5 | 2400/2400 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/call_indirect.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/call_indirect.wast 3 | (;; STDOUT ;;; 4 | 48/48 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/conversions.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/conversions.wast 3 | (;; STDOUT ;;; 4 | 401/401 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/custom_section.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/custom_section.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/exports.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-spec-wasm2c 3 | ;;; STDIN_FILE: third_party/testsuite/exports.wast 4 | (;; STDOUT ;;; 5 | 6/6 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/f32.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-spec-wasm2c 3 | ;;; STDIN_FILE: third_party/testsuite/f32.wast 4 | (;; STDOUT ;;; 5 | 2500/2500 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/f32_bitwise.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/f32_bitwise.wast 3 | (;; STDOUT ;;; 4 | 360/360 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/f64.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-spec-wasm2c 3 | ;;; STDIN_FILE: third_party/testsuite/f64.wast 4 | (;; STDOUT ;;; 5 | 2500/2500 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/f64_bitwise.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/f64_bitwise.wast 3 | (;; STDOUT ;;; 4 | 360/360 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/float_memory.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/float_memory.wast 3 | (;; STDOUT ;;; 4 | 60/60 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/inline-module.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/inline-module.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/int_literals.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/int_literals.wast 3 | (;; STDOUT ;;; 4 | 30/30 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/left-to-right.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/left-to-right.wast 3 | (;; STDOUT ;;; 4 | 95/95 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/memory_trap.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/memory_trap.wast 3 | (;; STDOUT ;;; 4 | 171/171 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/build/cmake/Windows.cmake: -------------------------------------------------------------------------------- 1 | # 2 | # Global Configuration for windows platform 3 | # 4 | 5 | # define some preprocessor flags 6 | add_definitions (/DWIN32_LEAN_AND_MEAN /D_UNICODE /DUNICODE) 7 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_iso_latin_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_iso_latin_1.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_invalid_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_array_invalid_utf8.json -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/block.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | block 5 | nop 6 | block 7 | nop 8 | nop 9 | end 10 | end)) 11 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/return-block.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | block (result i32) 5 | nop 6 | i32.const 1 7 | end 8 | return)) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/data-offset.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (import "foo" "bar" (global i32)) 4 | (memory 1) 5 | (global i32 i32.const 1) 6 | (data (get_global 0) "hi")) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/table.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (param i32)) 4 | (func (param i32 i64)) 5 | (func (result i64) i64.const 0) 6 | (table anyfunc (elem 0 0 1 2))) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/typecheck/nocheck.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --no-check 3 | (module 4 | (func (result i32) 5 | nop)) ;;; this is a typecheck error, but succeeds because of --no-check 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/br_table.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-spec-wasm2c 3 | ;;; STDIN_FILE: third_party/testsuite/br_table.wast 4 | (;; STDOUT ;;; 5 | 144/144 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/f32_cmp.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-spec-wasm2c 3 | ;;; STDIN_FILE: third_party/testsuite/f32_cmp.wast 4 | (;; STDOUT ;;; 5 | 2400/2400 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/f64_cmp.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-spec-wasm2c 3 | ;;; STDIN_FILE: third_party/testsuite/f64_cmp.wast 4 | (;; STDOUT ;;; 5 | 2400/2400 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/float_literals.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/float_literals.wast 3 | (;; STDOUT ;;; 4 | 81/81 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/memory_redundancy.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/memory_redundancy.wast 3 | (;; STDOUT ;;; 4 | 4/4 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/unreached-invalid.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/unreached-invalid.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/utf8-import-field.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/utf8-import-field.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/doc/Roadmap.md: -------------------------------------------------------------------------------- 1 | - Support [JSON Content Rules](https://datatracker.ietf.org/doc/draft-newton-json-content-rules/) for schema validation in `jsoncons_ext` 2 | 3 | - Enhanced error recovery 4 | 5 | -------------------------------------------------------------------------------- /tools/jsoncons/doc/build.md: -------------------------------------------------------------------------------- 1 | Start Visual Studio Command prompt for x64 2 | 3 | mkdir build64 & pushd build64 4 | cmake -G "Visual Studio 14 2015 Win64" .. 5 | popd 6 | cmake --build build64 --config Debug 7 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/build/cmake/run_tests_vc140x64.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set DIR=%~dp0 4 | 5 | cd %DIR%..\.. 6 | 7 | call "build/cmake/build_vc140x64/Debug/jsoncons_tests.exe" 8 | 9 | cd %DIR% 10 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_invalid_utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_invalid_utf-8.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_utf16BE_no_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_utf16BE_no_BOM.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_utf16LE_no_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_utf16LE_no_BOM.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_array_a_invalid_utf8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_array_a_invalid_utf8.json -------------------------------------------------------------------------------- /modules/EosioLibConfig.cmake.in: -------------------------------------------------------------------------------- 1 | @PACKAGE_INIT@ 2 | set_and_check(EosioLib_INCLUDE_DIR "@PACKAGE_INCLUDE_INSTALL_DIR@") 3 | include(${CMAKE_CURRENT_LIST_DIR}/EosioLib.cmake) 4 | set(EosioLib_LIBRARY c++ c eosio) 5 | -------------------------------------------------------------------------------- /tools/external/wabt/test/interp/basic.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp 2 | (module 3 | (func (export "main") (result i32) 4 | i32.const 42 5 | return)) 6 | (;; STDOUT ;;; 7 | main() => i32:42 8 | ;;; STDOUT ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/interp/unreachable.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp 2 | (module 3 | (func (export "trap") 4 | unreachable)) 5 | (;; STDOUT ;;; 6 | trap() => error: unreachable executed 7 | ;;; STDOUT ;;) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/callimport.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (import "foo" "bar" (func (param i32) (result i32))) 4 | (func (param i32) (result i32) 5 | i32.const 0 6 | call 0)) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/rethrow.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ARGS: --enable-exceptions 3 | (module 4 | (except $e1) 5 | (func 6 | try 7 | catch 8 | rethrow 9 | end)) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/skip-stack-guard-page.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/skip-stack-guard-page.wast 3 | (;; STDOUT ;;; 4 | 10/10 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/utf8-import-module.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/utf8-import-module.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_truncated-utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_truncated-utf-8.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_single_eacute.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_structure_single_eacute.json -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/block-return.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | block (result i32) 5 | nop 6 | i32.const 1 7 | return 8 | end)) 9 | 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/float_exprs.txt: -------------------------------------------------------------------------------- 1 | ;;; SLOW: 2 | ;;; TOOL: run-spec-wasm2c 3 | ;;; STDIN_FILE: third_party/testsuite/float_exprs.wast 4 | (;; STDOUT ;;; 5 | 794/794 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/skip-stack-guard-page.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/skip-stack-guard-page.wast 3 | (;; STDOUT ;;; 4 | 10/10 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/utf8-custom-section-id.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/utf8-custom-section-id.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/utf8-invalid-encoding.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/utf8-invalid-encoding.wast 3 | (;; STDOUT ;;; 4 | 0/0 tests passed. 5 | ;;; STDOUT ;;) 6 | -------------------------------------------------------------------------------- /tools/jsoncons/examples/build/cmake/run_examples_vc140x64.cmd: -------------------------------------------------------------------------------- 1 | @echo off 2 | 3 | set DIR=%~dp0 4 | 5 | cd %DIR%..\.. 6 | 7 | call "build/cmake/build_vc140x64/Debug/jsoncons_examples.exe" 8 | 9 | cd %DIR% 10 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_UTF-16LE_with_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_UTF-16LE_with_BOM.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSON_checker/pass3.json: -------------------------------------------------------------------------------- 1 | { 2 | "JSON Test Pattern pass3": { 3 | "The outermost value": "must be an object or array.", 4 | "In this test": "It is an object." 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/binary/gen-wasm-parse-error.txt: -------------------------------------------------------------------------------- 1 | ;;; RUN: %(gen_wasm_py)s %(in_file)s 2 | ;;; ERROR: 1 3 | section(TYPE) { foo } 4 | (;; STDERR ;;; 5 | 3: syntax error, LexToken(RBRACE,'}',3,22) 6 | ;;; STDERR ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/elem-offset.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (import "foo" "bar" (global i32)) 4 | (global i32 i32.const 1) 5 | (func) 6 | (table 2 anyfunc) 7 | (elem (get_global 0) 0)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/func_ptrs.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/func_ptrs.wast 3 | (;; STDOUT ;;; 4 | spectest.print_i32(83) 5 | 25/25 tests passed. 6 | ;;; STDOUT ;;) 7 | -------------------------------------------------------------------------------- /tools/jsoncons/doc/ref/json/destructor.md: -------------------------------------------------------------------------------- 1 | ### `jsoncons::json::json` 2 | 3 | ```c++ 4 | ~json(); 5 | ``` 6 | 7 | Destroys all values and deletes all memory allocated for strings, arrays, and objects. 8 | 9 | 10 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_UTF8_surrogate_U+D800.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_UTF8_surrogate_U+D800.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_not_in_unicode_range.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_not_in_unicode_range.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_invalid-utf-8-in-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_number_invalid-utf-8-in-int.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_lone-invalid-utf-8.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_structure_lone-invalid-utf-8.json -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/if-then-else-list.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | i32.const 1 5 | if 6 | nop 7 | nop 8 | else 9 | nop 10 | nop 11 | end)) 12 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/table-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func $f (param i32)) 4 | (func $g (param i32 i64)) 5 | (func $h (result i64) (i64.const 0)) 6 | (table anyfunc (elem $f $f $g $h))) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/typecheck/if-value.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | i32.const 0 5 | if (result i32) 6 | i32.const 1 7 | else 8 | i32.const 2 9 | end)) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/bad-enable-feature.txt: -------------------------------------------------------------------------------- 1 | ;;; RUN: %(wasm2c)s 2 | ;;; ARGS: --enable-simd %(in_file)s 3 | ;;; ERROR: 1 4 | (;; STDERR ;;; 5 | wasm2c doesn't currently support any --enable-* flags. 6 | ;;; STDERR ;;) 7 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_UTF-8_invalid_sequence.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_UTF-8_invalid_sequence.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_invalid-utf-8-in-escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_string_invalid-utf-8-in-escape.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_structure_incomplete_UTF8_BOM.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_structure_incomplete_UTF8_BOM.json -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/assert/assert-after-module.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wast2json 2 | (module 3 | (export "f" (func 0)) 4 | (func (result i32) 5 | i32.const 0 6 | return)) 7 | (assert_return (invoke "f") (i32.const 0)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/callindirect.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (table anyfunc (elem 0)) 4 | (type (func (param i32))) 5 | (func 6 | i32.const 0 7 | i32.const 0 8 | call_indirect (type 0))) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/drop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | i32.const 0 5 | drop 6 | i64.const 0 7 | drop 8 | f32.const 0 9 | drop 10 | f64.const 0 11 | drop)) 12 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/debug-names.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --debug-names 3 | (module $m1 4 | (func $f1) 5 | (func $f2 (param $p1 i32) (param $p2 i64) 6 | (local $l1 f32) 7 | (local $l2 f64))) 8 | -------------------------------------------------------------------------------- /tools/jsoncons/examples/output/tasks.csv: -------------------------------------------------------------------------------- 1 | (1) 2 | project_id,task_name,task_start,task_finish 3 | 4001,task2,02/01/2003,02/28/2003 4 | 4001,task3,03/01/2003,03/31/2003 5 | 4002,task1,04/01/2003,04/30/2003 6 | 4002,task2,05/01/2003, 7 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_overlong_sequence_2_bytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_overlong_sequence_2_bytes.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_overlong_sequence_6_bytes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_overlong_sequence_6_bytes.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_invalid-utf-8-in-exponent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_number_invalid-utf-8-in-exponent.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_string_invalid_utf8_after_escape.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_string_invalid_utf8_after_escape.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/countries.json: -------------------------------------------------------------------------------- 1 | [ 2 | ["country_code","name"], 3 | ["ABW","ARUBA"], 4 | ["ATF","FRENCH SOUTHERN TERRITORIES, D.R. OF"], 5 | ["VUT","VANUATU"], 6 | ["WLF","WALLIS & FUTUNA ISLANDS"] 7 | ] 8 | -------------------------------------------------------------------------------- /tools/external/wabt/cmake/README.md: -------------------------------------------------------------------------------- 1 | FindRE2C.cmake is copied from the [CMakeXFind 2 | repository](https://github.com/julp/CMakeXFind). This makes it more convenient 3 | to build for users who can't/won't run `git submodule update --init`. 4 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/import-global.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (import "foo" "1" (global i32)) 4 | (import "foo" "2" (global i64)) 5 | (import "foo" "3" (global f32)) 6 | (import "foo" "4" (global f64))) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/memory-index.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --stdout 3 | (module 4 | (import "a" "b" (memory 1))) 5 | (;; STDOUT ;;; 6 | (module 7 | (import "a" "b" (memory (;0;) 1))) 8 | ;;; STDOUT ;;) 9 | -------------------------------------------------------------------------------- /tools/jsoncons/examples/input/countries.json: -------------------------------------------------------------------------------- 1 | [ 2 | ["country_code","name"], 3 | ["ABW","ARUBA"], 4 | ["ATF","FRENCH SOUTHERN TERRITORIES, D.R. OF"], 5 | ["VUT","VANUATU"], 6 | ["WLF","WALLIS & FUTUNA ISLANDS"] 7 | ] 8 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_lone_utf8_continuation_byte.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_lone_utf8_continuation_byte.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_invalid-utf-8-in-bigger-int.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_number_invalid-utf-8-in-bigger-int.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_object_pi_in_key_and_trailing_comma.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_object_pi_in_key_and_trailing_comma.json -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/empty-file.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | ;; empty file 4 | (;; STDERR ;;; 5 | out/test/parse/empty-file.txt:4:2: error: unexpected token "EOF", expected a module field or a module. 6 | ;;; STDERR ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/callindirect-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (table anyfunc (elem 0)) 4 | (type $t (func (param i32))) 5 | (func $g 6 | i32.const 0 7 | i32.const 0 8 | call_indirect (type $t))) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/names.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/names.wast 3 | (;; STDOUT ;;; 4 | spectest.print_i32(42) 5 | spectest.print_i32(123) 6 | 475/475 tests passed. 7 | ;;; STDOUT ;;) 8 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/i_string_overlong_sequence_6_bytes_null.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/i_string_overlong_sequence_6_bytes_null.json -------------------------------------------------------------------------------- /tools/jsoncons/tests/input/JSONTestSuite/n_number_real_with_invalid_utf8_after_e.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldwide-asset-exchange/wax-cdt-legacy/HEAD/tools/jsoncons/tests/input/JSONTestSuite/n_number_real_with_invalid_utf8_after_e.json -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/callimport-type.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (type (func (param i32) (result i32))) 4 | (import "foo" "bar" (func (type 0))) 5 | (func (param i32) (result i32) 6 | i32.const 0 7 | call 0)) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/return-if.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | i32.const 1 5 | if (result i32) 6 | i32.const 2 7 | else 8 | i32.const 3 9 | end 10 | return)) 11 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/table-index.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --stdout 3 | (module 4 | (import "a" "b" (table 2 anyfunc))) 5 | (;; STDOUT ;;; 6 | (module 7 | (import "a" "b" (table (;0;) 2 anyfunc))) 8 | ;;; STDOUT ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/memory-segment-many.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (memory 1) 4 | (data (i32.const 0) "hi") 5 | (data (i32.const 4) "hello") 6 | (data (i32.const 10) "goodbye") 7 | (data (i32.const 20) "adios")) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/call-defined-later.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func $foo 4 | i32.const 1 5 | i32.const 0 6 | call $bar 7 | drop) 8 | (func $bar (param i32 i32) (result i32) 9 | i32.const 0)) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/module/bad-module-no-close.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module 4 | (;; STDERR ;;; 5 | out/test/parse/module/bad-module-no-close.txt:4:2: error: unexpected token "EOF", expected a module field. 6 | ;;; STDERR ;;) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/wasm2c/spec/start.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-spec-wasm2c 2 | ;;; STDIN_FILE: third_party/testsuite/start.wast 3 | (;; STDOUT ;;; 4 | spectest.print_i32(1) 5 | spectest.print_i32(2) 6 | spectest.print() 7 | 6/6 tests passed. 8 | ;;; STDOUT ;;) 9 | -------------------------------------------------------------------------------- /tools/jsoncons/tests/build/cmake/build_vc140x64.cmd: -------------------------------------------------------------------------------- 1 | call rmdir build_vc140x64 /S/Q 2 | call mkdir build_vc140x64 & pushd build_vc140x64 3 | call cmake -G "Visual Studio 14 2015 Win64" .. 4 | call popd 5 | call cmake --build build_vc140x64 --config Debug 6 | 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/binary/bad-version.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-gen-wasm-bad 2 | magic 3 | 0xe 0 0 0 4 | (;; STDERR ;;; 5 | 0000008: error: bad wasm file version: 0xe (expected 0x1) 6 | 0000008: error: bad wasm file version: 0xe (expected 0x1) 7 | ;;; STDERR ;;) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/expr-brif.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | block $exit (result i32) 5 | i32.const 0 6 | i32.const 0 7 | br_if 0 8 | drop 9 | i32.const 1 10 | end)) 11 | -------------------------------------------------------------------------------- /tools/jsoncons/examples/build/cmake/build_vc140x64.cmd: -------------------------------------------------------------------------------- 1 | call rmdir build_vc140x64 /S/Q 2 | call mkdir build_vc140x64 & pushd build_vc140x64 3 | call cmake -G "Visual Studio 14 2015 Win64" .. 4 | call popd 5 | call cmake --build build_vc140x64 --config Debug 6 | 7 | -------------------------------------------------------------------------------- /tools/jsoncons/examples/input/tasks.csv: -------------------------------------------------------------------------------- 1 | project_id, task_name, task_start, task_finish 2 | 4001,task1,01/01/2003,01/31/2003 3 | 4001,task2,02/01/2003,02/28/2003 4 | 4001,task3,03/01/2003,03/31/2003 5 | 4002,task1,04/01/2003,04/30/2003 6 | 4002,task2,05/01/2003, 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/assert/bad-invoke-no-module.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wast2json 2 | ;;; ERROR: 1 3 | (invoke "foo") 4 | (;; STDERR ;;; 5 | out/test/parse/assert/bad-invoke-no-module.txt:3:2: error: unknown module 6 | (invoke "foo") 7 | ^^^^^^ 8 | ;;; STDERR ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/if-return.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | i32.const 1 5 | if (result i32) 6 | i32.const 2 7 | return 8 | else 9 | i32.const 3 10 | return 11 | end)) 12 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/if-then-else-br.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | i32.const 1 5 | if (result i32) 6 | i32.const 1 7 | br 0 8 | else 9 | i32.const 1 10 | br 0 11 | end)) 12 | -------------------------------------------------------------------------------- /tools/cc/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/eosio-cc.cpp.in ${CMAKE_BINARY_DIR}/eosio-cc.cpp) 2 | 3 | configure_file(${CMAKE_CURRENT_SOURCE_DIR}/eosio-cpp.cpp.in ${CMAKE_BINARY_DIR}/eosio-cpp.cpp) 4 | 5 | add_tool(eosio-cc) 6 | add_tool(eosio-cpp) 7 | -------------------------------------------------------------------------------- /tools/external/wabt/test/dump/bad-version.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-objdump-gen-wasm 2 | ;;; ERROR1: 1 3 | magic 4 | 0xe 0 0 0 5 | (;; STDERR ;;; 6 | 0000008: error: bad wasm file version: 0xe (expected 0x1) 7 | ;;; STDERR ;;) 8 | (;; STDOUT ;;; 9 | 10 | ;;; STDOUT ;;) 11 | -------------------------------------------------------------------------------- /tools/external/wabt/test/regress/regress-16.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (start $2) 4 | (start 42) 5 | (;; STDERR ;;; 6 | out/test/regress/regress-16.txt:3:8: error: undefined function variable "$2" 7 | (start $2) 8 | ^^ 9 | ;;; STDERR ;;) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/brtable.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | block 5 | block 6 | block 7 | i32.const 0 8 | br_table 0 1 9 | end 10 | nop 11 | end 12 | nop 13 | end)) 14 | -------------------------------------------------------------------------------- /tools/external/wabt/test/regress/regress-13.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module (test)) 4 | (;; STDERR ;;; 5 | out/test/regress/regress-13.txt:3:10: error: unexpected token "test", expected a module field. 6 | (module (test)) 7 | ^^^^ 8 | ;;; STDERR ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/memory_redundancy.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/memory_redundancy.wast 3 | (;; STDOUT ;;; 4 | zero_everything() => 5 | zero_everything() => 6 | zero_everything() => 7 | 7/7 tests passed. 8 | ;;; STDOUT ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/spec/names.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp-spec 2 | ;;; STDIN_FILE: third_party/testsuite/names.wast 3 | (;; STDOUT ;;; 4 | called host spectest.print_i32(i32:42) => 5 | called host spectest.print_i32(i32:123) => 6 | 475/475 tests passed. 7 | ;;; STDOUT ;;) 8 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/bad-br-undefined.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module (func br 1)) 4 | (;; STDERR ;;; 5 | out/test/parse/expr/bad-br-undefined.txt:3:15: error: invalid depth: 1 (max 0) 6 | (module (func br 1)) 7 | ^^ 8 | ;;; STDERR ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/regress/regress-12.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module 4 | (func) 5 | ) 6 | 7 | (func)) 8 | (;; STDERR ;;; 9 | out/test/regress/regress-12.txt:7:1: error: unexpected token (, expected EOF. 10 | (func)) 11 | ^ 12 | ;;; STDERR ;;) 13 | -------------------------------------------------------------------------------- /tools/external/wabt/test/binary/bad-linking-metadata.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-gen-wasm-interp 2 | ;;; ERROR: 1 3 | magic 4 | version 5 | section("linking") { 6 | metadata_version[99] 7 | } 8 | (;; STDERR ;;; 9 | 0000013: error: invalid linking metadata version: 99 10 | ;;; STDERR ;;) 11 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/if-then-else-br-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func (result i32) 4 | i32.const 1 5 | if $exit (result i32) 6 | i32.const 1 7 | br $exit 8 | else 9 | i32.const 2 10 | br $exit 11 | end)) 12 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/bad-func-name.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module 4 | (func foo)) 5 | (;; STDERR ;;; 6 | out/test/parse/func/bad-func-name.txt:4:9: error: unexpected token foo, expected ). 7 | (func foo)) 8 | ^^^ 9 | ;;; STDERR ;;) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/inline-import-memory.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --stdout --inline-import 3 | (module 4 | (import "mod" "m1" (memory 2 3)) 5 | ) 6 | (;; STDOUT ;;; 7 | (module 8 | (memory (;0;) (import "mod" "m1") 2 3)) 9 | ;;; STDOUT ;;) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/inline-export-memory.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --stdout --inline-export 3 | (module 4 | (memory $foo 0) 5 | (export "foo" (memory $foo))) 6 | (;; STDOUT ;;; 7 | (module 8 | (memory (;0;) (export "foo") 0)) 9 | ;;; STDOUT ;;) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/inline-import-table.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --stdout --inline-import 3 | (module 4 | (import "mod" "t1" (table 1 anyfunc)) 5 | ) 6 | (;; STDOUT ;;; 7 | (module 8 | (table (;0;) (import "mod" "t1") 1 anyfunc)) 9 | ;;; STDOUT ;;) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/invalid-br-var.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --stdout --no-check 3 | (module 4 | (func 5 | br 1)) 6 | (;; STDOUT ;;; 7 | (module 8 | (type (;0;) (func)) 9 | (func (;0;) (type 0) 10 | br 1 (; INVALID ;))) 11 | ;;; STDOUT ;;) 12 | -------------------------------------------------------------------------------- /tools/external/wabt/test/roundtrip/invalid-local-index.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-roundtrip 2 | ;;; ARGS: --stdout --no-check 3 | (module 4 | (func 5 | set_local 0)) 6 | (;; STDOUT ;;; 7 | (module 8 | (type (;0;) (func)) 9 | (func (;0;) (type 0) 10 | set_local 0)) 11 | ;;; STDOUT ;;) 12 | -------------------------------------------------------------------------------- /tools/external/wabt/test/binary/bad-type-form.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-gen-wasm-bad 2 | magic 3 | version 4 | section(TYPE) { 5 | count[1] 6 | 0x20 7 | } 8 | (;; STDERR ;;; 9 | 000000c: error: unexpected type form (got 0x20) 10 | 000000c: error: unexpected type form (got 0x20) 11 | ;;; STDERR ;;) 12 | -------------------------------------------------------------------------------- /tools/external/wabt/test/dump/bad-version-logging.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-objdump-gen-wasm 2 | ;;; ARGS1: --debug 3 | ;;; ERROR1: 1 4 | magic 5 | 0xe 0 0 0 6 | (;; STDERR ;;; 7 | 0000008: error: bad wasm file version: 0xe (expected 0x1) 8 | ;;; STDERR ;;) 9 | (;; STDOUT ;;; 10 | 11 | ;;; STDOUT ;;) 12 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/bad-br-name-undefined.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module (func br $n)) 4 | (;; STDERR ;;; 5 | out/test/parse/expr/bad-br-name-undefined.txt:3:18: error: undefined label variable "$n" 6 | (module (func br $n)) 7 | ^^ 8 | ;;; STDERR ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/bad-param.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module (func (param foo))) 4 | (;; STDERR ;;; 5 | out/test/parse/func/bad-param.txt:3:22: error: unexpected token foo, expected ). 6 | (module (func (param foo))) 7 | ^^^ 8 | ;;; STDERR ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/wasm2c/examples/fac/fac.wat: -------------------------------------------------------------------------------- 1 | (func (export "fac") (param i32) (result i32) 2 | (if (result i32) (i32.eq (get_local 0) (i32.const 0)) 3 | (then (i32.const 1)) 4 | (else 5 | (i32.mul (get_local 0) (call 0 (i32.sub (get_local 0) (i32.const 1)))) 6 | ) 7 | ) 8 | ) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/binary/bad-duplicate-section.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-gen-wasm-bad 2 | magic 3 | version 4 | section(TYPE) { count[0] } 5 | section(TYPE) { count[0] } 6 | (;; STDERR ;;; 7 | 000000d: error: section Type out of order 8 | 000000d: error: section Type out of order 9 | ;;; STDERR ;;) 10 | -------------------------------------------------------------------------------- /tools/external/wabt/test/interp/expr-block.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: run-interp 2 | (module 3 | (func (export "test") (result i32) 4 | block (result i32) 5 | i32.const 10 6 | drop 7 | i32.const 1 8 | end 9 | ) 10 | ) 11 | (;; STDOUT ;;; 12 | test() => i32:1 13 | ;;; STDOUT ;;) 14 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/brtable-named.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | (module 3 | (func 4 | block $exit 5 | block $1 6 | block $0 7 | i32.const 0 8 | br_table $0 $1 $exit 9 | end 10 | nop 11 | end 12 | nop 13 | end)) 14 | -------------------------------------------------------------------------------- /tools/external/wabt/test/typecheck/bad-no-shared-memory.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module (memory 1 1 shared)) 4 | (;; STDERR ;;; 5 | out/test/typecheck/bad-no-shared-memory.txt:3:10: error: memories may not be shared 6 | (module (memory 1 1 shared)) 7 | ^^^^^^ 8 | ;;; STDERR ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/bad-nop.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module (func 4 | nop 5 | foo)) 6 | (;; STDERR ;;; 7 | out/test/parse/expr/bad-nop.txt:5:11: error: unexpected token foo, expected ). 8 | foo)) 9 | ^^^ 10 | ;;; STDERR ;;) 11 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/expr/bad-unexpected.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module (func (module))) 4 | (;; STDERR ;;; 5 | out/test/parse/expr/bad-unexpected.txt:3:16: error: unexpected token "module", expected an instr. 6 | (module (func (module))) 7 | ^^^^^^ 8 | ;;; STDERR ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/bad-local-name.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module (func (local 0 i32))) 4 | (;; STDERR ;;; 5 | out/test/parse/func/bad-local-name.txt:3:22: error: unexpected token 0, expected ). 6 | (module (func (local 0 i32))) 7 | ^ 8 | ;;; STDERR ;;) 9 | -------------------------------------------------------------------------------- /tools/external/wabt/test/parse/func/bad-local-type.txt: -------------------------------------------------------------------------------- 1 | ;;; TOOL: wat2wasm 2 | ;;; ERROR: 1 3 | (module (func (local foo))) 4 | (;; STDERR ;;; 5 | out/test/parse/func/bad-local-type.txt:3:22: error: unexpected token foo, expected ). 6 | (module (func (local foo))) 7 | ^^^ 8 | ;;; STDERR ;;) 9 | --------------------------------------------------------------------------------