From f3b9b8e048d4e6c8a1d3c7fa2666e61ecd2f2d16 Mon Sep 17 00:00:00 2001 From: Stefan Seifert Date: Sun, 21 Apr 2024 22:07:33 +0200 Subject: [PATCH] RakuAST: fix filename missing from compilation errors X::Comp has a "filename" attribute, not "file". --- src/Raku/Grammar.nqp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Raku/Grammar.nqp b/src/Raku/Grammar.nqp index d9ea25e61c..6db8c3c9d8 100644 --- a/src/Raku/Grammar.nqp +++ b/src/Raku/Grammar.nqp @@ -594,7 +594,7 @@ role Raku::Common { pos => $cursor.pos, pre => @prepost[0], post => @prepost[1], - file => $file, + filename => $file, |%opts }