From 7b805200dbbdddc20a0f2ff9393ae3832aa77248 Mon Sep 17 00:00:00 2001 From: Jonathan Worthington Date: Mon, 5 Jun 2023 14:00:36 +0200 Subject: [PATCH] Delete unused resolve-all method Nothing calls it. --- src/Raku/ast/base.rakumod | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/Raku/ast/base.rakumod b/src/Raku/ast/base.rakumod index 62840b0c380..f63847e1258 100644 --- a/src/Raku/ast/base.rakumod +++ b/src/Raku/ast/base.rakumod @@ -45,12 +45,6 @@ class RakuAST::Node { # and False otherwise. method can-be-bound-to() { False } - # Resolves all nodes beneath this one, recursively, using the specified - # resolver. - method resolve-all(RakuAST::Resolver $resolver, RakuAST::IMPL::QASTContext $context) { - self.IMPL-CHECK($resolver, $context, True); - } - method set-origin(RakuAST::Origin $origin) { nqp::bindattr(self, RakuAST::Node, '$!origin', $origin); }