Skip to content

Commit

Permalink
Update PEGTL.
Browse files Browse the repository at this point in the history
  • Loading branch information
ColinH committed Sep 23, 2023
1 parent f01ae8b commit 575200c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion external/PEGTL
Submodule PEGTL updated 80 files
+3 −1 .clang-tidy
+0 −22 .cmake/test_filesystem.cpp.in
+2 −2 README.md
+18 −6 doc/Changelog.md
+4 −0 doc/Contrib-and-Examples.md
+12 −8 doc/Control-and-Debug.md
+34 −27 doc/Errors-and-Exceptions.md
+1 −1 doc/Getting-Started.md
+9 −19 doc/Inputs-and-Parsing.md
+3 −0 doc/Migration-Guide.md
+8 −2 doc/README.md
+104 −18 doc/Rule-Reference.md
+12 −7 include/tao/pegtl/buffer_input.hpp
+6 −1 include/tao/pegtl/contrib/analyze_traits.hpp
+11 −0 include/tao/pegtl/contrib/coverage.hpp
+112 −0 include/tao/pegtl/contrib/nested_exceptions.hpp
+6 −6 include/tao/pegtl/contrib/parse_tree.hpp
+11 −5 include/tao/pegtl/contrib/remove_first_state.hpp
+21 −9 include/tao/pegtl/contrib/remove_last_states.hpp
+25 −7 include/tao/pegtl/contrib/shuffle_states.hpp
+11 −2 include/tao/pegtl/contrib/state_control.hpp
+7 −0 include/tao/pegtl/contrib/trace.hpp
+19 −9 include/tao/pegtl/internal/action_input.hpp
+1 −1 include/tao/pegtl/internal/apply.hpp
+4 −4 include/tao/pegtl/internal/bump.hpp
+30 −0 include/tao/pegtl/internal/extract_position.hpp
+24 −0 include/tao/pegtl/internal/has_current_position.hpp
+1 −1 include/tao/pegtl/internal/if_apply.hpp
+11 −11 include/tao/pegtl/internal/inputerator.hpp
+1 −1 include/tao/pegtl/internal/missing_apply.hpp
+3 −6 include/tao/pegtl/internal/mmap_file_posix.hpp
+3 −6 include/tao/pegtl/internal/mmap_file_win32.hpp
+1 −1 include/tao/pegtl/internal/rematch.hpp
+1 −1 include/tao/pegtl/internal/rewind_guard.hpp
+2 −1 include/tao/pegtl/internal/rules.hpp
+26 −0 include/tao/pegtl/internal/stream_to_string.hpp
+97 −0 include/tao/pegtl/internal/try_catch_raise_nested.hpp
+37 −9 include/tao/pegtl/internal/try_catch_return_false.hpp
+5 −5 include/tao/pegtl/match.hpp
+23 −18 include/tao/pegtl/memory_input.hpp
+19 −2 include/tao/pegtl/normal.hpp
+5 −6 include/tao/pegtl/parse.hpp
+27 −87 include/tao/pegtl/parse_error.hpp
+45 −0 include/tao/pegtl/parse_error_base.hpp
+2 −11 include/tao/pegtl/position.hpp
+9 −2 include/tao/pegtl/rules.hpp
+4 −4 src/example/pegtl/abnf2pegtl.cpp
+1 −0 src/example/pegtl/csv2.cpp
+7 −7 src/example/pegtl/expression.cpp
+1 −0 src/example/pegtl/indent_aware.cpp
+20 −13 src/example/pegtl/iri.cpp
+2 −2 src/example/pegtl/json_ast.cpp
+2 −2 src/example/pegtl/json_build.cpp
+2 −2 src/example/pegtl/json_coverage.cpp
+2 −2 src/example/pegtl/json_parse.cpp
+2 −2 src/example/pegtl/json_trace.cpp
+4 −3 src/example/pegtl/proto3.cpp
+7 −7 src/example/pegtl/proto3.hpp
+0 −11 src/example/pegtl/random_order.cpp
+1 −1 src/example/pegtl/recover.cpp
+2 −2 src/example/pegtl/s_expression.cpp
+18 −18 src/example/pegtl/token_input.cpp
+20 −13 src/example/pegtl/uri.cpp
+2 −1 src/test/pegtl/CMakeLists.txt
+3 −3 src/test/pegtl/actions_two.cpp
+3 −3 src/test/pegtl/contrib_coverage.cpp
+1 −1 src/test/pegtl/contrib_parse_tree.cpp
+1 −1 src/test/pegtl/contrib_remove_first_state.cpp
+1 −1 src/test/pegtl/contrib_remove_last_states.cpp
+48 −8 src/test/pegtl/contrib_state_control.cpp
+1 −1 src/test/pegtl/contrib_trace1.cpp
+1 −1 src/test/pegtl/contrib_trace2.cpp
+1 −9 src/test/pegtl/parse_error.cpp
+21 −19 src/test/pegtl/position.cpp
+7 −7 src/test/pegtl/rule_rep.cpp
+1 −1 src/test/pegtl/rule_rep_min_max.cpp
+53 −0 src/test/pegtl/rule_try_catch_raise_nested.cpp
+8 −2 src/test/pegtl/rule_try_catch_return_false.cpp
+3 −3 src/test/pegtl/rule_until.cpp
+6 −6 src/test/pegtl/verify_seqs.hpp

0 comments on commit 575200c

Please sign in to comment.