Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Apply a tweak also made in HLL::Actions last night; this clears up a …
…vast number of the spectest failures as a result of switching to QRegex for parsing Perl 6 source. O(30) test files have failures that need investigating.
  • Loading branch information
jnthn committed May 26, 2012
1 parent dccd9cf commit d7e3797
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Perl6/Actions.pm
Expand Up @@ -4602,7 +4602,7 @@ class Perl6::Actions is HLL::Actions {
# and use &infix:<,> to build the parcel
method quote_EXPR($/) {
my $past := $<quote_delimited>.ast;
if $/.CURSOR.quotemod_check('w') {
if %*QUOTEMOD<w> {
my @words := HLL::Grammar::split_words($/,
compile_time_value_str($past, ":w list", $/));
if +@words != 1 {
Expand Down

0 comments on commit d7e3797

Please sign in to comment.