diff --git a/src/Perl6/World.nqp b/src/Perl6/World.nqp index a030627c7f9..d82992adfd1 100644 --- a/src/Perl6/World.nqp +++ b/src/Perl6/World.nqp @@ -4058,6 +4058,14 @@ class Perl6::World is HLL::World { elsif $name eq '&break' { @suggestions.push: 'last'; } + elsif $name eq '&skip' { + @suggestions.push: 'next'; + } + elsif $name eq '&continue' { + @suggestions.push: 'NEXT'; + @suggestions.push: 'proceed'; + @suggestions.push: 'succeed'; + } return @suggestions; }