Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/julia/parser.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3171,8 +3171,8 @@ end
# (a,b=1; c,d=2; e,f=3) ==> (tuple-p a (= b 1) (parameters c (= d 2)) (parameters e (= f 3)))
#
# flisp: parts of parse-paren- and parse-arglist
function parse_brackets(after_parse::Function,
ps::ParseState, closing_kind, generator_is_last=true)
function parse_brackets(after_parse::F,
ps::ParseState, closing_kind, generator_is_last=true) where {F <: Function}
ps = ParseState(ps, range_colon_enabled=true,
space_sensitive=false,
where_enabled=true,
Expand Down
Loading