Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
treat "abc"."def" as concat and not as dottyop
  • Loading branch information
FROGGS committed Apr 5, 2013
1 parent f41550c commit 3c0bdf6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion lib/Perl6/P5Grammar.pm
Expand Up @@ -1188,7 +1188,7 @@ grammar Perl6::P5Grammar is HLL::Grammar does STD5 {
<.newlex>
<blockoid>
#{ @*MEMOS[self.pos]<endstmt> := 2; }
#<.ws>
<.ws>
}

token block {
Expand Down Expand Up @@ -2956,6 +2956,10 @@ grammar Perl6::P5Grammar is HLL::Grammar does STD5 {
<OPER=infix> <![=]>
}

token dotty:sym<.> {
<!>
}

token dotty:sym«->» {
<sym> <dottyop>
<O('%methodcall')>
Expand Down

0 comments on commit 3c0bdf6

Please sign in to comment.