Skip to content
This repository has been archived by the owner on Feb 3, 2021. It is now read-only.

Commit

Permalink
Add some appropriate nyi warnings for :: and :::, rather than
Browse files Browse the repository at this point in the history
silently failing.
  • Loading branch information
pmichaud committed Nov 3, 2009
1 parent 24654af commit 5910ede
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Regex/P6Regex/Grammar.pm
Expand Up @@ -74,8 +74,8 @@ grammar Regex::P6Regex::Grammar is HLL::Grammar;
token metachar:sym<^^> { <sym> }
token metachar:sym<$> { <sym> }
token metachar:sym<$$> { <sym> }
token metachar:sym<:::> { <sym> }
token metachar:sym<::> { <sym> }
token metachar:sym<:::> { <sym> <.panic: '::: not yet implemented'> }
token metachar:sym<::> { <sym> <.panic: ':: not yet implemented'> }
token metachar:sym<lwb> { $<sym>=['<<'|'«'] }
token metachar:sym<rwb> { $<sym>=['>>'|'»'] }
token metachar:sym<bs> { \\ <backslash> }
Expand Down

0 comments on commit 5910ede

Please sign in to comment.