Skip to content

Commit c67f95c

Browse files
committed
rename parseall to parseall_throws
1 parent dafe88b commit c67f95c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/check_all_packages.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
using JuliaSyntax, Logging
77

88
# like Meta.parseall, but throws
9-
function parseall(str)
9+
function parseall_throws(str)
1010
pos = firstindex(str)
1111
exs = []
1212
while pos <= lastindex(str)
@@ -68,7 +68,7 @@ Logging.with_logger(logger) do
6868
push!(exceptions, ex)
6969
meta_parse = "success"
7070
try
71-
parseall(file)
71+
parseall_throws(file)
7272
catch err2
7373
meta_parse = "fail"
7474
ex_count -= 1

0 commit comments

Comments
 (0)