Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix heredoc tweaking
  • Loading branch information
sorear committed Nov 9, 2010
1 parent 131fa77 commit 13cdb07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion v6/STD.pm6
Expand Up @@ -4346,7 +4346,7 @@ grammar Q is STD {
elsif $w.defined { self.mixin($w ?? STD::Q::w1 !! STD::Q::w0) }
elsif $ww.defined { self.mixin($ww ?? STD::Q::ww1 !! STD::Q::ww0) }

elsif $to.defined { self.truly($to, ':to'); STD::Q.mixin(STD::Q::herehead[self]) }
elsif $to.defined { self.truly($to, ':to'); self.cursor_fresh(STD::Q but STD::Q::herehead[self]) }

elsif $regex.defined {
%*LANG<Regex>
Expand Down
2 changes: 1 addition & 1 deletion v6/TODO
Expand Up @@ -7,7 +7,6 @@ Cursor.gettrait
Cursor.load_lex
Cursor.add_categorical
Action methods
Non-string parameterized role arguments
token { $param-role-var }

DONE:
Expand Down Expand Up @@ -60,6 +59,7 @@ temp $*FOO
try
token { :my $var = expr; $var }
Write tests for EXPR
Non-string parameterized role arguments

AVERTED:

Expand Down

0 comments on commit 13cdb07

Please sign in to comment.