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

Commit

Permalink
Switch HLL::Actions to use find_codepoint opcode, bump PARROT_REVISION.
Browse files Browse the repository at this point in the history
  • Loading branch information
pmichaud committed May 13, 2010
1 parent 379f1b2 commit c5482a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/PARROT_REVISION
@@ -1 +1 @@
46106
46564
2 changes: 1 addition & 1 deletion src/HLL/Actions.pm
Expand Up @@ -183,7 +183,7 @@ method quote_escape:sym<misc>($/) {
method charname($/) {
my $codepoint := $<integer>
?? $<integer>.ast
!! Q:PIR { %r = new ['CodeString'] }.charname_to_ord( ~$/ );
!! pir::find_codepoint__Is( ~$/ );
$/.CURSOR.panic("Unrecognized character name $/") if $codepoint < 0;
make pir::chr($codepoint);
}
Expand Down

0 comments on commit c5482a9

Please sign in to comment.