8000 A block after the do-block without parenthesis by pasberth · Pull Request #102 · ruby/ruby · GitHub
[go: up one dir, main page]

Skip to content

A block after the do-block without parenthesis #102

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 3 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
I removed the block_call as a primary-expression because primary-expr…
…ession is not needed.
  • Loading branch information
pasberth committed Mar 5, 2012
commit 84868dbd00221f48bc341ca9e371f84c0cbcd75b
1 change: 0 additions & 1 deletion parse.y
Original file line number Diff line number Diff line change
Expand Up @@ -2816,7 +2816,6 @@ primary : literal
$$ = method_add_block($1, $2);
%*/
}
| block_call
| tLAMBDA lambda
{
$$ = $2;
Expand Down
0