Skip to content

Commit

Permalink
bump minimum libdparse version, fix #583
Browse files Browse the repository at this point in the history
  • Loading branch information
WebFreak001 committed Jul 19, 2023
1 parent 6f41b20 commit 470e65f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dub.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"targetType": "autodetect",
"license": "BSL-1.0",
"dependencies": {
"libdparse": ">=0.14.0 <1.0.0"
"libdparse": ">=0.19.2 <1.0.0"
},
"targetPath" : "bin/",
"targetName" : "dfmt",
Expand Down
2 changes: 1 addition & 1 deletion libdparse
Submodule libdparse updated 57 files
+70 −0 .github/workflows/default.yml
+49 −0 .github/workflows/deploy-pages.yml
+24 −0 .github/workflows/pr_info_intro.yml
+49 −0 .github/workflows/pr_info_post.yml
+64 −0 .github/workflows/pr_info_untrusted.yml
+14 −0 .gitignore
+0 −3 .gitmodules
+0 −44 .travis.yml
+0 −1 DGrammar/generate_html_from_libdparse.sh
+0 −121 appveyor.yml
+49 −0 ci/summary_comment.sh
+114 −0 ci/summary_comment_diff.sh
+0 −3 dub.json
+2 −7 meson.build
+0 −15 netlify.sh
+313 −66 src/dparse/ast.d
+115 −63 src/dparse/astprinter.d
+184 −75 src/dparse/formatter.d
+187 −79 src/dparse/lexer.d
+643 −238 src/dparse/parser.d
+3 −3 src/dparse/rollback_allocator.d
+47 −4 src/dparse/stack_buffer.d
+13 −8 src/dparse/strings.d
+1 −1 src/dparse/trivia.d
+7 −7 src/std/experimental/lexer.d
+0 −1 stdx-allocator
+0 −4 subprojects/stdx-allocator.wrap
+1 −0 test/ast_checks/assert_args.d
+4 −0 test/ast_checks/assert_args.txt
+105 −0 test/ast_checks/errorRecovery.d
+22 −0 test/ast_checks/errorRecovery.txt
+4 −0 test/ast_checks/foreach.d
+6 −0 test/ast_checks/foreach.txt
+9 −0 test/ast_checks/issue471.d
+10 −0 test/ast_checks/issue471.txt
+7 −0 test/ast_checks/named_arguments.d
+5 −0 test/ast_checks/named_arguments.txt
+1 −0 test/ast_checks/oneLineFunctionDoc.d
+1 −0 test/ast_checks/oneLineFunctionDoc.txt
+2 −0 test/ast_checks/shortenedFunction.d
+8 −0 test/ast_checks/shortenedFunction.txt
+6 −0 test/ast_checks/throw_expressions.d
+8 −0 test/ast_checks/throw_expressions.txt
+31 −0 test/ast_checks/while_condition.d
+28 −0 test/ast_checks/while_condition.txt
+4 −0 test/fail_files/issue459.d
+3 −0 test/fail_files/pragma_exp_bound.d
+1 −0 test/fail_files/shortenedMethod.d
+4 −0 test/pass_files/bitfields.d
+6 −0 test/pass_files/compiler_2_104_0.d
+7 −0 test/pass_files/mixin_types.d
+126 −0 test/pass_files/much_recursion.d
+7 −0 test/pass_files/named_arguments.d
+37 −0 test/pass_files/shortenedMethods.d
+11 −0 test/pass_files/while_condition_assignment.d
+72 −23 test/run_tests.sh
+96 −25 test/tester.d

0 comments on commit 470e65f

Please sign in to comment.