Skip to content

Commit

Permalink
Fix compiler bug with recv::meth command calls
Browse files Browse the repository at this point in the history
  • Loading branch information
adambeynon committed Nov 27, 2013
1 parent b10658b commit ee4110d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/opal/parser/grammar.rb

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion lib/opal/parser/grammar.y
Expand Up @@ -225,7 +225,7 @@ rule
| primary_value tDOT operation2 command_args cmd_brace_block
| primary_value tCOLON2 operation2 command_args =tLOWEST
{
result = new_call val[0], val[2].intern, val[3]
result = new_call(val[0], val[2], val[3])
}
| primary_value tCOLON2 operation2 command_args cmd_brace_block
| kSUPER command_args
Expand Down

0 comments on commit ee4110d

Please sign in to comment.