Subject: | Parsing with read inputs flag = 1 is broken |
Attempting to parse anything that has an \input line with read inputs
flag = 1 is broken. The failing line is Parser.pm line 1180, where
$subtree, a Tree hashref, is dereferenced as an array. This can be fixed
by changing @$subtree to @{$subtree->{nodes}}.