Skip to content
This repository was archived by the owner on Nov 8, 2022. It is now read-only.

Commit a97f53d

Browse files
author
Paul H. Liu
committed
Let :vect pass through ast_walk
1 parent 8340d6a commit a97f53d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ast_walk.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -289,7 +289,7 @@ function from_expr(ast :: ANY, depth, callback, cbdata :: ANY, top_level_number,
289289
end
290290
elseif head == :meta
291291
# ignore :meta for now. TODO: we might need to walk its args.
292-
elseif head == :comprehension
292+
elseif head == :comprehension || head == :vect
293293
# args are either Expr or Symbol
294294
for i = 1:length(args)
295295
args[i] = from_expr(args[i], depth, callback, cbdata, top_level_number, false, read)

0 commit comments

Comments
 (0)