From 609fd63013f231173b535809f35462acd59b29c9 Mon Sep 17 00:00:00 2001 From: Jonathan Worthington Date: Sat, 5 Jun 2010 23:01:54 +0200 Subject: [PATCH] Add a missing .node in term:sym, which happily gets us reporting sub not found line numbers more accurately. --- src/Perl6/Actions.pm | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Perl6/Actions.pm b/src/Perl6/Actions.pm index c5bbf63d244..365d48e665b 100644 --- a/src/Perl6/Actions.pm +++ b/src/Perl6/Actions.pm @@ -1866,6 +1866,7 @@ method term:sym($/) { } else { $past.name('&' ~ $name); } } + $past.node($/); make $past; }